@charset "UTF-8";
#tenji{
    position: relative;
    box-sizing: border-box;

}

#eventData{
    position: relative;
    overflow: hidden;
    /*以下お好み*/
    /*高さの初期値*/
    height: 760px;
}
#eventData::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
    height: 60px;
    background: #fff;
}
@media screen and (max-width:480px){
	#eventData{ height:750px;}
	#eventData::before { height:120px;
    /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
    height: 70px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
	}
	}


/* 続きを読むボタン */
.readmore-label{
    display: table;
    bottom: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 10px 10px;
    background-color: #919191;
    border-radius: 4px;
    color: #FFF;
	width:260px;
	font-size:20px;
	text-align:center;
}
@media screen and (max-width:480px){
	.readmore-label{
		width:60%;
		padding:5px;
		font-size:16px;
		}

	}
.readmore-label:before{
    content: '▼ more';
}
.readmore-label:hover{ opacity:0.6; cursor: pointer;}
.readmore-check{
    display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
    position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
    /* display: none; */
}
.readmore-check:checked ~ .readmore-label:before{
    content: '▲ close';
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ #eventData{
    height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ #eventData::before {
    display: none;
}