.bodyRight{
	margin: 0 auto;
	height: 1155px;
	position: -webkit-sticky;
	position: sticky;
	top: calc(100vh - 1165px);
	display: grid;
	grid-template-areas: 
		"bodyRightNewsArea"
		"bodyRightTwitterArea"
		"bodyRightInformationArea"
		"bodyRightToTopArea";
	grid-template-rows: 243px 543px 277px 20px;
	grid-row-gap: 24px;
}
.bodyRightNewsArea{
	margin: 0;
	padding: 0;
	grid-area: bodyRightNewsArea;
	width: 100%;
	height: 243px;
}
.indexNewsArea ul li {
	list-style: none;
}
.indexNewsArea ul li:last-child {
	border-bottom: none;
}
.indexNewsScroll {
	margin: 0 auto;
	width: 90%;
	height: 200px;
	overflow: auto;
}
.indexNewsLine {
	margin: 5px 0 0;
	border-bottom: solid 1px;
	display: grid;
	grid-template-areas: 
		"indexNewsDate"
		"indexNewsWord";
}
.indexNewsDate{
	grid-area: indexNewsDate;
}
.indexNewsWord{
	grid-area: indexNewsWord;
}
.bodyRightTwitterArea{
	grid-area: bodyRightTwitterArea;
}
.indexTwitterArea{
	grid-area: twitterArea;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	height: 543px;
}
.indexTwitterBox {
	height: 500px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
.bodyRightInformationArea{
	grid-area: bodyRightInformationArea;
	width: 100%;
	height: 277px;
}
.information {
	width: 100%;
}
.info_list {
	width: 90%;
	margin: 0 auto ;
}
.info_list ul {
	display: flex;
	flex-direction: row;
}
.info_list li {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0 auto 5px;
}
.info_list li:nth-last-child(last) {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0 auto;
}
.info_list li:hover {
}
.info_word a:hover {
	opacity: .7;
}
.info_word img{
	width: 100%;
}
.bodyRightToTopArea{
	grid-area: bodyRightToTopArea;
	margin: 0;
	width: 100%;
	height: 20px;
	background: #796baf;
	border-radius: 8px;
	opacity: .8;
}
.bodyRightToTopArea:hover{
	opacity: .5;
}
.bodyRightToTopArea div{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}