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

/*main*/
main,#subpage_subtitle{
	background-image: url("../img/bg_top.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 96px;
}
#subpage_subtitle{
	margin-top: 0;
}
main .container,#subpage_subtitle .container{
	padding: 40px 20px;
}
main .item_box,#subpage_subtitle .item_box{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	text-align: center;
	width: 100%;
	margin-bottom: 16px;
}
#subpage_subtitle .item_box{
	margin-bottom: 0;
}
h1{
	font-size: var(--fz21);
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: var(--white);
	background-color: var(--light-purple);
	padding: 10px 20px;
	width: 20%;
}
main .item_box p,#subpage_subtitle .item_box p{
	font-size: var(--fz21);
	font-weight: 600;
	background-color: var(--white);
	border: solid 1px var(--light-purple);
	padding: 10px 20px;
	width: 80%;
}
main .subpage_txt .icon_txt{
	position: relative;
	padding-left: 40px;
	margin-top: 10px;
}
main .subpage_txt .icon_txt:before{
	position: absolute;
	content: '';
	top: -4px;
    left: 0%;
	display: block;
	width: 32px;
	height: 32px;
	background-image: url("../img/icon_music_note.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
/* end main*/

#music_list .container, #music_list_others .container{padding-top: 56px;}

/*==================================================
music_box css
===================================*/
#music_list .row,#music_list_others .row{
	flex-wrap: wrap;
	align-items: stretch;
}
.music_box{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	width: 49%;
	margin-bottom: 24px;
}
.music_box_num{
	background-color: var(--light-purple);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 88px;
	height: auto;
}
.music_box_num p{
	color: var(--white);
	font-size: var(--fz18-16);
	font-weight: 500;
}
.music_box_player{
	background-color: var(--bg-gray);
	width: calc(100% - 88px);
	min-height: 92px;
	padding: 8px 16px 32px 16px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.music_box_title{
	width: 100%;
/*	position: relative;*/
}
.music_box_title h3{
	color: var(--white);
	font-size: 1rem;
	font-weight: 500;
	padding-right: 40px;
	letter-spacing: 0.025em;
}
h3.add_icon_vocal{
	position: relative;
/*	display: inline;*/
	padding-left: 40px;
}
h3.add_icon_vocal:after{
	position: absolute;
	content: '';
	top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	display: block;
	width: 32px;
	height: 32px;
	background-image: url("../img/icon_music_note.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
.music_s_box{
	position: absolute;
	bottom: 0px;
	right: 0;
	padding: 0 16px;
	width: 100%;
	height: 100%;
}
.music_box_small02{
	width: 100%;
	height: 100%;
}


/*==================================================
audiojs css
===================================*/
.audiojs{
	width: 100%;
	height: 100%;
	padding-top: 16px;
	padding-bottom: 10px;
	background-image:none;
	box-shadow:none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	background:none;
}
.audiojs .play-pause{
	width: 50px;
/*	height: 60px;*/
	padding: 4px 18px;
	border-right: none;
}
.audiojs .scrubber{
	width: 100%;
	border-top: none;
	margin: 8px 0 0 0;
}
.audiojs .time{
	display: none;
}
.audiojs p{
	height: 50px;
	width: 50px;
}
.audiojs .loaded{
	background-image: none;
}
.audiojs .play{
	background: url("../img/icon_music.svg") 0px 0px no-repeat;
	background-size: 32px 32px;
}
.audiojs .pause{
	background: url("../img/icon_music_pause.svg") 0px 0px no-repeat;
	background-size: 32px 32px;
}
.audiojs .loaded{
	background: #404040;
}
.audiojs .progress{
	background-image: none;
}

/*==================================================
レスポンシブ css
===================================*/
@media not screen and (min-width: 768px) {
	main{
		margin-top: 60px;
	}
	main .container{
		padding: 20px;
	}
	main .item_box{
		flex-direction: column;
		text-align: left;
	}
	h1{
		width: 100%;
	}
	main p{
		width: 100%;
	}
	main .item_box p, #subpage_subtitle .item_box p{
		width: 100%;
	}
	main .subpage_txt .icon_txt{
		margin-top: 16px;
	}
	.music_box{
		width: 100%;
		flex-direction: column;
		margin-bottom: 8px;
	}
	.music_box_num{
		width: 100%;
		justify-content: flex-start;
		padding: 3px 20px;
	}
	.music_box_player{
		width: 100%;
	}
	h3.add_icon_vocal{
		display: block;
		padding-left: 40px;
	}
	h3.add_icon_vocal:after{
		left: 0;
	}
	#subpage_subtitle .item_box{
		flex-direction: column;
		text-align: left;
	}
	.audiojs .play-pause{
		
	}
}