@CHARSET "UTF-8";
.noErrors {
	display: none;
}

/* アーティスト一覧 */
ul#artistResults {
	max-width:1500px;
	margin: auto;
	padding: 0 25px 0px;
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
}
#artistResults .artistResultsRow {
    width: calc(25% - 30px);
    box-sizing: border-box;
    margin: 2px;
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
}
a.artistLink {
    display: block;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 5px;
    border: 1px solid #cccccc;
    box-shadow: inset -8px -8px 18px rgba(0, 0, 0, 0.08);
    color: #18489c;
    border-radius: 0px;
    background: ##ffffff;
    font-size: 15px;
}
#artistResults .artistResultsRow.is-empty {
	margin-top: 0;
	margin-bottom: 0;
}
a.artistLink:hover {
    opacity: 0.8;
    text-decoration: none;
}
@media screen and (max-width: 800px) {
	ul#artistResults .artistResultsRow {
		width: 100%;
	}
}

/* 全体 */
.matrix-body {
	max-width:1500px;
	margin: auto;
	padding: 0 25px 25px;
	display: flex;
	flex-wrap:wrap;
}
/* 施策明細 */
.matrix-body .lotteryResultsRow {
	width: calc(33.333% - 30px);
	margin: 15px 15px;
	cursor: pointer;
	background-color: #ffffff;
	border-radius: 10px;
	box-sizing: border-box;
	overflow: hidden;
}
@media screen and (max-width: 800px) {
	.matrix-body .lotteryResultsRow {
		width: calc(50% - 30px);
	}
}
@media screen and (max-width: 600px) {
	.matrix-body {
		padding: 10px;
		padding-top: 0;
	}
	.matrix-body .lotteryResultsRow {
		width: 100%;
	}
}
.matrix-body .lotteryResultsRow:hover {
	opacity: 0.8;
}
.matrix-body .lotteryResultsRow label {
	cursor: pointer;
}
/* 施策画像 */
.lotteryImgDispRow {
	position: relative;
	width: 100%;
	height: auto;
	background: #ffffff;
}
.lotteryImgDispRow:before {
	content: "";
	display: block;
	padding-top: calc(2*100% / 3);
}
.lotteryImgDispRow .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
}
/* 画像 */
img.lotteryImgDisp {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin:auto;
	text-align: center;
	display: block;
	max-width: 100%;
	max-height: 100%;
	vertical-align:middle;
}

/* アーティスト名 */
.blocks.artistNameRow {
	font-size: 14px;
	font-weight: bold;
	margin: 1.5em;
}
/* 施策名 */
.blocks.lotteryNameRow {
	font-weight: bold;
	margin: 1.5em;
}
/* 次明細 */
.blocks.scheduleResultsRow {
	margin: 1.5em;
}
.scheduleResultsRow.DETAILS_ROW {
	margin: 1.5em 0;
}

/* 詳細・お申込みはこちらリンク */
@media screen and (max-width: 600px) {
	.toEventDetailApplyLinkRow,
	.toEventDetailApplyLinkDisabledRow {
		width: 100%;
	}
}

.toEventDetailApplyLinkRow,
.toEventDetailApplyLinkDisabledRow {
	text-align: center;
}

.toEventDetailApplyLink,
.toEventDetailApplyLinkDisabled {
	text-align: center;
} 
a.toEventDetailApplyLink {
	display: inline-block;
	height: 40px;
	background: #f789ad;
	background-image: linear-gradient(to bottom, #f789ad, #da4073);
	border-radius: 20px;
	color: #ffffff;
	font-size: 15px;
	padding: 10px 30px 10px 30px;
	text-decoration: none;
	margin: 10px;
}
a.toEventDetailApplyLink:hover {
	background: #cc708f;
	background-image: linear-gradient(to bottom, #cc708f, #da4073);
	text-decoration: none;
}

a.toEventDetailApplyLinkDisabled {
	display: inline-block;
	height: 40px;
	background: #c0c0c0;
	border-radius: 20px;
	color: #ffffff;
	font-size: 15px;
	padding: 10px 30px 10px 30px;
	text-decoration: none;
	margin: 10px;
}
