@charset "UTF-8";
/*--------------------------------------------------
カラー設定
ブルー　　　　　　　    #0242B4
背景　　　　　        　#F0EEE7
オレンジ　　　　　　　　#F4A43B
ピンク　　　　　　　　　#F43BD2
メインブロック背景      #F7F7F6

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));

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

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

--------------------------------------------------*/


/*------------------------------------------
その他周辺情報
------------------------------------------*/
/*ラッパー*/
.item_wrapper {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
.item_wrapper::before, .item_wrapper::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
}
.item_wrapper::before {
	clip-path:polygon(0 0, 100% 0, 0 100%);
	background-color: #FF1D81;
	top: 0;
	left: 0;
}
.item_wrapper::after {
	clip-path:polygon(100% 0, 100% 100%, 0 100%);
	background-color: #FF1D81;
	bottom: 0;
	right: 0;
}
/*タイトル*/
.other_event_titel {
	position: relative;
	padding: 20px 10px 20px 20px;
	border-bottom: 1px dashed #BBBBBB;
}

.other_event_titel a {
	font-size: 20px;
	font-weight: 600;
	color: #565656;
}
@media (hover: hover) and (pointer: fine) {
	.other_event_titel a:hover {
		color: #FF8D00;
	}
	.other_event_titel a:hover .icon_link2 {
		filter: brightness(0) saturate(100%) invert(71%) sepia(62%) saturate(5671%) hue-rotate(4deg) brightness(108%) contrast(103%);
	}
}
@media (hover: none) {
	.other_event_titel a:active {
		color: #FF327F;
	}
	.other_event_titel a:active .icon_link2 {
		filter: brightness(0) saturate(100%) invert(71%) sepia(62%) saturate(5671%) hue-rotate(4deg) brightness(108%) contrast(103%);
	}
}

/*イベントの内容*/
.other_event_contents {
	padding: 0 1em;
}
.other_event_contents .flex {
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 10px;
}
.other_event_contents .flex dt {
	font-size: 12px;
}
.other_event_contents .flex dd {
	flex: 1;
	margin-left: 0;
	font-weight: 600;
}
.en .flex dt {
	width: 63px;
}