@charset "utf-8";
/*----------------------------------------------------------------*/
/* K-popバンド用
/*----------------------------------------------------------------*/

/*----------------------------------------------------------------*/
/*表紙
/*----------------------------------------------------------------*/
#ul_product_main{display:flex;}
/*茶色・みどりおび*/
#ul_product_main li {
	background: #524228;
	margin: 1em .1em;
	padding: .5em .5em .5em 1.5em;
	color: #fff;
	cursor: pointer;
	position: relative;
	line-height: 1.5;
	font-size: 14px;
	display: flex;
	flex:1;
	align-items: center;
}
#ul_product_main li._opened,
#ul_product_main li:hover,
#ul_product_main li:active{
	background-color:darkgreen;
}
#ul_product_main li::before {
	content:"";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 12px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: .5em;
}
#ul_product_main li._opened::before{
	transform: rotate(90deg);		
}
#ul_product_main span{
	display:block;
	vertical-align: middle;
}

/*----------------------------------------------------------------*/
/*モーダル
/*----------------------------------------------------------------*/
/*黒背景*/
.ul_product_modal li{
	height: 100vh;
	position: fixed;
	top: 0;
	left:0;
	width: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 99999;
}
/*モーダル枠*/
.ul_product_modal .display{
	background: #fff;
	left: 50%;
	padding: 40px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 60%;
}
/*画像*/
.ul_product_modal img{
	vertical-align: top;
	width: auto;
	height:auto;
	max-width:49%;
}
/*テキスト*/
.ul_product_modal dl{
	font-size:11px;
}
/*ピンクタイトル*/
.ul_product_modal dt{
	color:#f53193;
	font-weight: bold;
}
/*内枠余白*/
.ul_product_modal dd{}
.ul_product_modal .dl_list {
	margin: 1em 0;
}
/*閉じる*/
.ul_product_modal span {
	text-align: center;
	display: block;
	cursor: pointer;
}
#product_display01.ul_product_modal .display{
	max-width: 480px;
}
#product_display02.ul_product_modal .display{
	max-width: 320px;
}
#product_display03.ul_product_modal .display{
	max-width: 320px;
	max-height:80vh;
	overflow-y: auto;
}
#product_display03.ul_product_modal img{
	width:33%;
}
/*----------------------------------------------------------------*/
/*カテゴリーリスト
/*----------------------------------------------------------------*/
.product_category{
	display:flex;
	flex-wrap:wrap;
}
/*アイテムよこならび*/
.ul_product_list{
	width: 23%;
	margin:1%;
	background: #d0d0d0;
	padding: 1em;
	box-sizing: border-box;
	cursor: pointer;
}
.ul_product_list:hover,
.ul_product_list:active{
	background: #E5B8E4;
}
.ul_product_list dd{
	color:#F53193!important;
}
.ul_product_list img{
	max-width:100%;
}	
.ul_product_list .ttl {
	font-weight: bold;
	text-align: center;
	margin-top: 1em;
}
.ul_product_list .ul_download {
	text-align: center;
}
@media screen and (max-width:768px){
	.ul_product_list{width: 48%;margin:1%;}
}
@media screen and (max-width:375px){
	.ul_product_list{width: 98%;margin:1%;}
}
/*テキスト*/
.ul_product_list dl{
	font-size:11px;
}
/*ピンクタイトル*/
.ul_product_list dt{
	color:#f53193;
	font-weight: bold;
	text-align: center;
}
/*内枠余白*/
.ul_product_list dd{}
.ul_product_list .dl_list {
	margin: 1em 0;
}
	
	
	
/*----------------------------------------------------------------*/
/* モーダル
/*----------------------------------------------------------------*/
.mordal_band {
	display:none;
}
.mordal_band._display {
	display: block;
	font-size: 12px;
	height: 90vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 99999;
}
.mordal_band .detail {
	background: #fff;
	left: 50%;
	padding: 40px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 60%;
	overflow-y: scroll;
	height: 80vh;
}
.mordal_band h3 {
	font-size: 18px;
	border-bottom:1px solid #000;
	margin-bottom:.5em;
	text-align: center;
}
.mordal_band h3 span{
	color:#f53193;
	display:block;
    margin-top: -.5em;
    font-size: 14px;
}
.mordal_band .band {
	display: flex;
	margin: 0 0 1em;
	align-items: center;
}
.mordal_band .wrapper {}
.mordal_band .wrapper ul {}
.mordal_band .wrapper li {
}
.mordal_band .wrapper li::before {
	content:"\02022";
}
.mordal_band .wrapper dl {
}
.mordal_band .wrapper dt {
	font-weight:bold;
	color:#f53193;
	margin-bottom:.5em;
}
.mordal_band .wrapper dd {
	line-height:1.5;
}
.mordal_band .band img {
	margin-right: 2em;
	width: 270px;
	height: 270px;
}
.mordal_band dl + p {
	margin-top:.5em;
	font-weight: bold;
}
.mordal_band p a::before{
	content:"";
	display: block;
}
.mordal_band .close{
	text-align: center;
	cursor: pointer;
	font-weight: bold;
	color:#f53193;
}
@media screen and (max-width:799px){
	.mordal_band .band{
		flex-flow: column;
	}
	
}