/* CSS Document */

/*冒頭*/
.result_head{
	margin-bottom: 10px;
}
/*タブ切り替え*/
input.result_tab{display: none;}

.result_tabbox{
	overflow: hidden;
	display: flex;
	justify-content:space-between;
}

.result_tabbox label{
	display: flex;
	justify-content:center;
	align-items:center;
	width: 33%;
	height: 3em;
	background: #333;
	border-radius: 5px 5px 0 0;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	cursor: pointer;
}

input#result_tab1:checked ~ .result_tabbox label:nth-child(1),
input#result_tab2:checked ~ .result_tabbox label:nth-child(2),
input#result_tab3:checked ~ .result_tabbox label:nth-child(3){
	background: #BF9654;
}

.result_tabbox label:hover{
	background: #BF9654;
	color: #fff;
}

/*初期表示*/
.result_tabview#result_tabv1{display: block;}

/*非表示にする要素*/
input#result_tab1:checked ~ .result_tabview:not(#result_tabv1),
input#result_tab2:checked ~ .result_tabview:not(#result_tabv2),
input#result_tab3:checked ~ .result_tabview:not(#result_tabv3){
	display: none;
}

.result_tabview{
	border-top: 4px solid #BF9654;
	/*background: #BF9654;*/
	background: #fff;
}

.result_tabview > *{
	animation-name:result_anim;
	animation-duration: 0.5s;
}

@keyframes result_anim {
	0% {
		display: none;
		opacity: 0;
	}
	50%{display: block;opacity: 0.5;}
	
	100% {
		opacity: 1;
	}
}



/*一覧見出し*/
.result_listhead{
	margin: 0;
	padding: 5px;
	background: #fff;
}
.result_listhead:before{
	content:"●";
}

.result_listhead:first-child{
	border-radius: 10px 10px 0 0 ;
}

/*画像見出し*/
.result_listhead_img{
	width: 800px;
	height: 0;
	margin: 0 0 0 0 ;
	padding-top: 65px;
	overflow: hidden;
	background-repeat:no-repeat;
	background-color: #fff;
}

ol + .result_listhead_img{margin-top: 1em;}

#head_grandprix{
	background-image:url(../../image/result/midasi_grandprix.png);
	border-radius: 10px 10px 0 0;
}
#head_gold{background-image:url(../../image/result/midasi_gold.png);}
#head_comic{background-image:url(../../image/result/midasi_comic.png);}
#head_media{background-image:url(../../image/result/midasi_media.png);}
#head_win{background-image:url(../../image/result/midasi_win.png);}



/*-----一覧（テキスト）-----*/
.result_listT{
	margin: 0;
	padding: 0 10px 10px 2em;
	background: #fff;
}

.result_listT > dt,
.result_listT > dd{
	padding: 5px;
}
.result_listT > dt{
	display: block;
	float: left;
	margin-right: 10px;
	font-weight: bold;
}


.result_listT > dd{
	display: block;
	margin-bottom: 5px;
	padding-left: 10px;
	border-bottom: 1px solid #ccc;
	background: #fff;
}


/*-----一覧（ジャンル別）-----*/
.result_list{
	display: flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin: 0;
	padding: 1px 0 0 0;
	overflow: hidden;
	background: #fff;
}

.result_list > li{
	position: relative;
	display: block;
	float: left;
	width: 365px;
	padding: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
	background:url(../../image/result/article_resultS_bg.gif) repeat-y;
}

.result_list > li:before{
	position: absolute;
	content:url(../../image/result/article_resultS_head.gif);
	top:-18px;
	left:0;
}
.result_list > li:after{
	position: absolute;
	content:url(../../image/result/article_resultS_foot.gif);
	bottom:-18px;
	left:0;
}

/*大枠*/
.result_listL{
	margin: 0;
	padding: 1px 0 0 0;
	overflow: hidden;
	background: #fff;
}

.result_listL > li{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content:center;
	width: 770px;
	padding: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
	background:url(../../image/result/article_resultL_bg.gif) repeat-y;
}

.result_listL > li:before{
	position: absolute;
	content:url(../../image/result/article_resultL_head.gif);
	top:-18px;
	left:0;
}
.result_listL > li:after{
	position: absolute;
	content:url(../../image/result/article_resultL_foot.gif);
	bottom:-18px;
	left:0;
}


/*-----一覧：中身-----*/
.npublisher{
	padding: 5px 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: center;
	font-weight: bold;
}

/*受賞タイトル・著者*/
.ntitle_withimg{
	display: flex;
	align-items:stretch;
	width: 100%;
}

.ntitle_withimg.win_double{
	background:url(../../image/result/ic_double.png) right no-repeat;
}


.ntitle_withimg img{
	height: 120px;
}

.ntitle{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-grow: 1;
	height: 120px;
	margin-left: 10px;
	font-size:150%;
	font-weight:bold;
	text-align:center;
}

.nauthor{
	display:block;
	font-weight:normal;
	font-size:11pt;
	text-align:center;
	margin:0 0 10px 0;
}

.ntitle span.exp{
	font-size:10pt;
}

.result_btn li{margin-bottom: 5px;}
.result_btn a:hover{opacity: 0.6;}

.result_listL .result_btn{
	display: flex;
	flex-wrap:wrap;
	justify-content:space-around;
}

/*講評（モーダル）*/
#no00{/*戻るボタンの先*/
	position:fixed;
	top:50%;
	z-index:-1;
}

.modal {
	display: none;
	top: 0;
	left: 0;
	width: 100%;
}

.modal:target {
	position:fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding-top: 40px;
	z-index: 20;
	background: rgba(0,0,0,0.6);
}


.modal_backbg{
	position: absolute;
	top:0;
	left:0;
	display: block;
	width: 300vh;
	height: 300vh;
	z-index: -1;
}

.modal_box{
	position: relative;
	width:600px;
	padding: 10px;
	background: #fff;
	border-radius: 3px;
	animation-duration: 0.3s;
	animation-name: modal_anim;
	transition:ease;
	opacity: 1;
	text-align: left;
}

@keyframes modal_anim {
	0% {
		opacity: 0;
		transform: scaleY(0.1);
	}
	
	100% {
		opacity: 1;
		transform: scaleY(1);
	}
}

.modal_back{
	position: absolute;
	display: block;
	top:-16px;
	right:-16px;
	width: 32px;
	height: 0;
	padding-top: 32px;
	background:url(../../../image/common/popup_close.png) no-repeat;
	z-index: 5;
	overflow: hidden;
}

.modal_back:hover{opacity: 0.6;}

/*応援コメント*/
.article_ouenpickup{
	margin-bottom: -5px;
}
.article_ouenpickup li{
	max-height: 7em;
	margin-bottom:5px;
	padding-left:1em;
	text-indent:-1em;
	font-size: 92%;
}
.article_ouenpickup li:before{
	content:"●";
}

/*-----応援コメント募集-----*/
/*応援期間*/
#ouencomment{
	width: 800px;
	margin-bottom: 20px;
}
#ouencomment_list{
	width:800px;
}
#ouencomment_list dt,
#ouencomment_list dd{
	display:block;
	line-height:1.2;
}
#ouencomment_list dt{
	position:relative;
	float:left;
	width: 70px;
	padding:5px 5px 0 5px;
	font-weight: bold;
}

#ouencomment_list dd{
	width:715px;
	margin-top:5px;
	padding:5px 5px 5px 80px;
	background: #fff7cf;
	border-bottom: 1px #CCC solid;
	border-radius:5px;
	box-shadow:0 0 2px 0px #ccc;
}
#ouencomment_list dd+dt,
#ouencomment_list dd+dt+dd{margin-top:16px;}

#ouencomment_list dd p{
	display:inline-block;
	width: 715px;
	margin:0;
	padding:0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#ouencomment_list dd p.ouencomment_title{font-weight:bold;}

#ouencomment_list dd p.ouencomment_title:before{content:"『";}
#ouencomment_list dd p.ouencomment_title:after{content:"』";}



/*応援ボタン*/
.result_onenbtn{
	text-align:center;
	margin:40px 0;
}

.result_onenbtn p{margin: 1em 0;}


/*-----info用講評-----*/
.kouhyou_head{
	margin: 0;
	padding: 5px;
	font-size: 120%;
}

.kouhyou_blc{
	border:1px solid #ccc;
	border-radius:3px;
	box-sizing:border-box;
	padding:5px 10px;
}

.kouhyou_blc + .kouhyou_blc{margin-top: 40px;}

.kouhyou_ntitle{
	border-top:1px solid #ccc;
	font-weight: bold;
	font-size: 120%;
}

.kouhyou_data {
	display:table;
	border-top:1px solid #ccc;
}


.kouhyou_data>dt {
	float:none;
	display:block;
	padding: 5px 0 0 0;
	font-weight: bold;
	color:#c90;
	border:none;
}

.kouhyou_data>dd{
	display:block;
	padding:0;
	border-bottom:1px solid #ccc;
}
.kouhyou_data>dd:last-child{
	border-bottom:none;
}
.kouhyou_data_title{
	font-weight:bold;
	font-size:12pt;
}

.kouhyou_ouenbtn{
	margin: 10px 0;
	text-align: center;
}