@charset "utf-8";
/* CSS Document */

/* 下から表示されるブロック */
.realtime_message_toast {
	z-index: 9999;
	position: fixed;
	bottom: -160px;
	height: 160px;
	left: 0;
	width: 400px;
	left: calc(50% - 200px);
	margin: auto;
}
.realtime_message_toast__inner {
	height: 160px;
	margin: 0 auto;
	background-color: #FFF;
	color: #333333;
	box-shadow: 0px 4px 15px -5px #777777;
}
.realtime_message_toast__pbar_wrap {
	height: 2px;
	z-index: 1;
	position: relative;
	border-radius: 5px;
}
.realtime_message_toast__pbar {
	background-color: #e268a0;
	z-index: 2;
	height: 100%;
}
.realtime_message_toast__inner > a {
	display: flex;
	padding: 20px;
	height: 150px;
}
.realtime_message_toast__inner > a > figure {
	margin: 0 10px 0 0;
}
.realtime_message_toast__inner > a > figure > img {
	width: 90px;
	height: 90px;
	display: block;
}
.realtime_message_toast__inner > a > span {
}
.realtime_message_toast__notice {
	border: solid 2px #333;
	color: #333;
	border-radius: 30px;
	line-height: 1;
	padding: 7px;
	width: 232px;
	height: 30px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	margin: 0 0 8px;
	display: block;
}
.realtime_message_toast__title {
	font-size: 17px;
	color: #e268a0;
	font-weight: bold;
	text-decoration: underline;
	line-height: 1.5;
	margin: 0 0 5px;
	display: block;
}
.realtime_message_toast__shopname {
	font-size: 12px;
	color: #796262;
	overflow: hidden;
	white-space: nowrap;
	width: 270px;
	text-overflow: ellipsis;
	line-height: 1;
	margin: 0 0 5px;
	display: block;
}
.realtime_message_toast__areagenre {
	font-size: 12px;
	color: #796262;
	overflow: hidden;
	white-space: nowrap;
	width: 270px;
	text-overflow: ellipsis;
	line-height: 1;
	display: block;
}


/* モーダル等で使用するリスト */
.realtime_message_list {
}
.realtime_message_list--modal {
	height: 400px;
	overflow-y: scroll;
}
.realtime_message_item {
	padding: 40px 0;
	display: flex;
	border-bottom: solid 1px #e8dfcf;
}
.realtime_message_list > .realtime_message_item:first-of-type {
	padding: 0 0 40px;
}
.realtime_message_list > .realtime_message_item:last-of-type {
	border-bottom: 0;
	padding: 40px 0 0;
}
.realtime_message_item > a {
	width: 125px;
	height: 125px;
	margin: 0 20px 0 0;
}
.realtime_message_item > a > figure {
	margin: 0;
}
.realtime_message_item > a > figure > img {
	width: 125px;
	height: 125px;
}
.realtime_message_item__title {
	font-size: 20px;
	color: #e268a0;
	font-weight: bold;
	text-decoration: underline;
	line-height: 1;
	margin: 0 0 10px;
	display: inline-block;
	transition: all 300ms 0s ease;
}
.realtime_message_item__title:hover {
	opacity: .8;
}
.realtime_message_item__body {
	line-height: 1.5;
	margin: 0 0 10px;
	font-size: 16px;
}
.realtime_message_item__shopname {
	color: #333;
	transition: all 300ms 0s ease;
	font-size: 14px;
	line-height: 1;
}
.realtime_message_item__shopname:hover {
	color: #e268a0;
}
.realtime_message_item__areagenre {
	font-size: 14px;
	display: block;
	margin: 3px 0 0;
}

@media screen and (max-width: 760px) {
	.realtime_message_toast {
		width: 100%;
		left: 0;
	}
}