@charset "utf-8";

/* お知らせ、ケア通知
---------------------------------------------------------- */
#noticeBtnWrapper,
#careNoticeBtnWrapper {
	width: 50px;
	position: relative;
	vertical-align: center;
}

#noticeBtn {
	width: 30px;
}

#noticeBtn .noPress{
	cursor:default;
	color: #e2e2e2;
}

#noticeIcon,
#careNoticeIcon {
	font-size: 25px;
	right: 20px;
}

#unreadNoticeCount,
#unreadCareNoticeCount {
	color:#fff;
	border-radius: 25px;
	text-align: center;
	background-color: #eb3323;
	width: 25px;
	position: absolute;
	left: 20px;
}

#noticeBtn:hover #unreadNoticeCount,
#careNoticeBtn:hover #unreadCareNoticeCount {
	background-color: #800000;
}

#noticeContainer,
#careNoticeContainer {
	float: right;
	width: 420px;
	background: #F5F6F8;
	box-shadow: 0 0 8px gray;
	display: none;
	position: absolute;
	right:0;
	z-index: 100;
}

#noticeHeader,
#careNoticeHeader,
#newNoticesHeader {
	width: 420px;
	height: 50px;
	background: #FFFFFF;
	border-bottom: 1px solid #DCDDDF;
	position: relative;
}

#noticeHeaderTitle,
#careNoticeHeaderTitle,
#newNoticeHeaderTitle {
	width: 100%;
	height: 100%;
	font-size: 23px;
	color: #4aa69c;
	text-align: center;
	padding-top: 10px;
}

#noticeClose,
#careNoticeClose,
#newNoticesClose {
	width: 40px;
	font-size: 25px;
	color: #333333;
	position: absolute;
	top: 0;
	right: 5px;
}

#noticeList,
#newNoticesList {
	height: 100%;
	max-height: 950px;
	overflow-x: hidden;
	overflow-y: scroll;
}

#noticeList ul {
	margin-bottom: 20px;
}

#noticeList li,
#careNoticeList li,
#newNoticesList li {
	border-bottom: 1px solid #DCDDDF;
}

#noticeList li a,
#careNoticeList li a,
#newNoticesList li a {
	text-decoration: none;
	color: #000;
	display: block;
	padding: 10px;
	background-color: #FFFFFF;
	border-left: 5px solid #F5F6F8;
}

#noticeList li a:hover,
#noticeList li a.current,
#careNoticeList li a:hover,
#careNoticeList li a.current,
#newNoticesList li a:hover,
#newNoticesList li a.current {
	background: #faf2cc;
	border-left: 5px solid #00A89C;
}

.noticeRow1,
.noticeRow2 {
	width: 380px;
}

.noticeRow2 {
	position: relative;
}

.noticeCategory {
	width: 240px;
	float: left;
}

.noticeCategory p {
	width: 140px;
	color:#fff;
	border-radius: 25px;
	text-align: center;
}

.noticePostDate p {
	text-align: right;
}

#pastNotice {
	width: 420px;
	height: 40px;
	margin-top: -10px;
	text-align: center;
}

#pastNotice a {
	 font-size: 15px;
	 text-decoration: none;
}

#noticeList .isRead,
#careNoticeList .isRead,
#newNoticesList .isRead {
	background-color: #d5d5d5;
}

#careNoticeBtn img {
	width: 26px;
	vertical-align: middle;
	margin-top: -5px;
}

#careNoticeList {
	height: 100%;
	overflow: hidden;
}

#noCareNotice {
	width: 420px;
	height: 40px;
	margin-top: 10px;
	text-align: center;
}

#noCareNotice p {
	font-size: 15px;
	text-decoration: none;
}

.careNoticeBody {
	width: 420px;
	height: 100%;
	display: none;
}

.careNoticeBody p {
	padding: 10px 10px 10px 15px;
}

.careNoticeOpen {
	position: absolute;
	top: 15px;
	right: 0;
	width: 10px;
	height: 10px;
	border-top: 3px solid #707070;
	border-right: 3px solid #707070;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.careNoticeOpen.open {
	top: 18px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


#new-notices-modal {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	z-index: 6000;
}
.new-notices-modal__background {
	position: absolute;
	background: rgba(0, 0, 0, 0.7);
	height: 100vh;
	width: 100%;
}
#new-notices-modal__container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
