/* css */

/*作品一覧のナビ*/
.goods {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.goods li {
	font-size:18px;
	padding: 0px;
    margin: 2px;
}
.goods a {
	text-decoration: none;
	padding: 0 10px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(49, 170, 226) 50%);
	background-position: 0 0;
	background-size: 200% auto;
	transition: .3s;
}

.goods a:hover{
  background-position: -100% 0;
  color: #fff;
}

/*テスト----------------------*/

/*作品一覧のナビ*/
.hanga_nav nav{
	margin-left;none;
	width: 100%;
	background-color: greenyellow;
}
.hanga_nav ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	/*
	white-space: nowrap;
	overflow: auto;
	*/
}
.hanga_nav li{
	argin-left: 20px;
	width: 350px;
}
/*戻るボタン*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 5px;
}
.pagetop a {
	font-size:40px;
    display: block;
    background-color: #2196F3;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
/*
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
*/

/*作品一覧の大会タイトル*/
.taikai_content {
	position: relative;
	width: 100%;
}

.taikai_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6; /* 背景画像の透明度を50%に設定 */
}

.taikai_text {
	position: relative;
	z-index: 1; /* テキストを背景画像の上に表示 */
	color: #000;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/*作品の説明*/
.setumei_text {
	line-height: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.setumei_syo{
	width: 264px;
	padding: 4px;
	font-size: 24px;
}
.setumei_title{
	font-size: 16px;
	color: #777777;
}