.event {
display: flex;
flex-wrap: wrap;
align-items: center;
background-color: white;
padding: 20px 15px;
background:#fff;
border:1px solid #e2e2e2;
border-radius: 5px;
margin-bottom:1px;
}
.event:hover {
 background:#f7f7f7;
}

.event .anytime{
color: #0071BE;
font-size: 150%;
font-weight:bold;
text-align:center;
min-width: auto;
}

.event-date-location {
display: flex;
align-items: center;
padding-right: 15px;
min-width: 200px;
border-right:1px solid #e2e2e2;
}
.event-date {
color: #0071BE;
padding: 10px;
border-radius: 5px;
text-align: center;
margin-right: 15px;
border-right: 1px solid #e2e2e2;
font-weight: bold;
}
.event-date p {
margin: 0;
}

.renew.sub .event p {
    line-height: 100%;
    margin: 0;
}

.event-date .year {
text-align: left;
font-size:80%;
padding-bottom:5px;
}
.event-date .day {
font-size: 150%;
padding-bottom:3px;
}
.event-date .day span{
font-size:50%;
vertical-align:baseline;
padding:0 2px;

}

.event-date .weekday {
text-align: right;
font-size:80%;

}
.location {
font-size: 150%;
font-weight: bold;
}
.event-details {
flex: 1;
display: flex;
flex-direction: column;
padding-left:15px;
}
.event-details .title {
font-size: 150%;
font-weight: bold;
margin-bottom: 0px;
}
.event-details .tags {
display: flex;
flex-wrap: wrap;
margin-bottom: 0px;
font-size: 80%;
}
.event-details .tag {
background-color: #d8213f;
color: white;
padding: 3px 5px;
margin-right: 5px;
margin-bottom: 5px;
}

.event-details .tag.blue {
background-color: #0071bf;
}
.event-details .times {
display: flex;
}
.event-details .time {
border: 1px solid #aaaaaa;
padding: 3px 5px;
margin-right: 5px;
margin-top:8px;
font-size: 80%;
}

.event-details .timeend {
	background:#FFCDD2;
}


@media screen and (max-width: 767px) {

.event {
display: block;
padding: 3px 12px 10px 12px;
}

.event-date {
margin-right: 35px;
}

.event-date-location {
display: flex;
align-items: center;
border-right:0px;
}

.event-details {
flex: 1;
display: flex;
flex-direction: column;
padding:10px 0px 0px 0px;
}

.event-details .title {
line-height:120%;
font-size: 110%;
}

}




details summary {
padding: 25px 15px;
background: #fff;
cursor: pointer;
position: relative;
user-select: none;
list-style: none;
color:#0071be;
font-weight: bold;
border-top:1px solid #eee;
}
details summary:focus {
	background:#eee;
}
summary::-webkit-details-marker {
display:none;
}
details summary span{
color:#262626;
font-weight: normal;

}
details[open] summary::after {
content: "▲";
position: absolute;
right: 10px;
}

summary::after {
content: "▼";
position: absolute;
right: 10px;
font-size: 12px;
transition: transform 0.3s ease;
}

details ul {
padding: 0 10px;
list-style: none;
margin: 0;
background: #fff;
}

details ul li {
padding: 10px 0;
}

.filter{
	padding:5px;
	background:#f8f8f8;
	border:1px solid #ccc;
	margin-bottom:20px;
	/*border-radius:10px;*/
}
.filter details{
}
.filter details summary {
	padding:10px;
	color:#262626;
	font-weight: normal;
	background:none;
	border:none;
}

.filter details summary::after {
/*content: "";*/
}

.filter details .tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    font-size: 80%;
    padding:10px;
}

.filter details .tag {
    background-color: #eaeaea;
    color: #262626;
    padding: 3px 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
}
.filter details .tag.select {
	/*color: #d8213f;
	background:#fff;
	border:1px solid #d8213f;*/
	background-color: #d8213f;
	color:#fff;
	border:1px solid #d8213f;
}
.filter details .tag.blue {
    /*background-color: #0071bf;*/
}
.filter details .tag.blue.selectblue {
	/*color: #0071bf;
	background:#fff;*/
	background-color: #0071bf;
	color:#fff;
	border:1px solid #0071bf;
}


details details summary{
    padding: 25px 15px;
    background: #fff;
    cursor: pointer;
    position: relative;
    user-select: none;
    list-style: none;
    color: #E65100;
    font-weight: bold;
    border-top: 1px solid #eee;
    font-size:125%;
}

details details summary.test::after {
    content: "開く▼";
    font-size: 14px;
}
details details[open] summary.test::after {
    content: "閉じる▲";
    font-size: 14px;
}
