@charset "UTF-8";
/*------------------------
タブ
------------------------*/
.archive {
	width: 1200px;
	margin: 0 auto 90px;
}
.archive .tab_area {
	text-align: center;
	justify-content: space-between;
	margin-bottom: 50px;
	border-bottom: 1px solid var(--mygray);
}
.archive .tab_area li {
	width: 100%;
}
.archive .tab_area li a {
	display: block;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1;
	padding: 15px;
	position: relative;
	transition: none;
}
.archive .tab_area li .select {
	border-left: 1px solid var(--mygray);
	border-right: 1px solid var(--mygray);
}
.archive .tab_area li .select::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: var(--btncolor);
}
.archive .tab_area li .select::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}
/*------------------------
一覧
------------------------*/
.archive .tab_main ul li {
	padding: 25px;
	background: var(--bgcolor);
	align-items: center;
	margin-bottom: 10px;
}
.archive .tab_main ul li .date {
	flex-direction: column-reverse;
	align-items: center;
	line-height: 1;
	margin-right: 30px;
}
.archive .tab_main ul li .date .year {
	display: block;
}
.archive .tab_main ul li .date .monthandday {
	display: block;
	font-size: 2.4rem;
	margin-bottom: 6px;
}
.archive .tab_main ul li .txt {
	flex: 1;
}
.archive .tab_main ul li .txt h2 {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.3;
	padding-bottom: 6px;
}
.archive .tab_main ul li .txt a:hover {
	color: var(--btncolor);
}
.archive .tab_main ul li .txt p {
	margin-bottom: 6px;
}
.archive .tab_main ul li .txt p a {
	text-decoration: underline;
}
.archive .tab_main ul li .txt .venue a {
	display: flex;
	text-decoration: underline;
}
.archive .tab_main ul li .txt .venue a:hover {
	color: var(--btncolor);
}
.archive .tab_main ul li .txt .venue a::before {
	content: '';
	display: block;
	background: url(/pc/img/common/icn_map.svg) no-repeat 100%/contain;
	width: 11px;
	height: 16px;
	margin: 5px 4px 0 0;
}
.archive .tab_main ul li .txt .venue a span {
	flex: 1;
}
/*------------------------
モーダル内
------------------------*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 100;
	display: grid;
	place-items: center;
}
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 80%;
}
.modal-close{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
.modal-content{
	background: #fff;
	text-align: left;
	padding: 40px;
	max-height: calc(100vh - 80px);
	overflow-y: auto;
}
.modal-source {
	display: none;
}
.modal-content table {
	margin-bottom: 30px;
}
.modal-content table tr th {
	width: 20%;
	background: var(--bgcolor);
	vertical-align: text-top;
	padding: 30px;
	box-sizing: border-box;
	font-size: 1.8rem;
	letter-spacing: .08em;
	font-weight: bold;
	border-top: #dcdcdc 1px solid;
	border-bottom: #dcdcdc 1px solid;
}
.modal-content table tr td {
	padding: 30px;
	border-top: #dcdcdc 1px solid;
	border-bottom: #dcdcdc 1px solid;
}
.modal-content table tr td a {
	text-decoration: underline;
}
.modal-content .g-btn {
	width: fit-content;
	margin: auto;
}
.modal-content .g-btn a {
	width: fit-content;
	display: block;
	padding: 12px 40px;
	background: var(--btncolor);
	color: #fff;
	line-height: 1;
}
.modal-content .g-btn a:hover {
	background: var(--txtcolor);
}
/*------------------------
pager
------------------------*/
.screen-reader-text {
	display: none;
}
.pager {
	text-align: center;
}
.pager .nav-links {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.pager .nav-links .page-numbers {
	display: block;
	background: #fff;
	border: 1px solid var(--mygray);
	line-height: 26px;
	padding: 0 4px;
	min-width: 28px;
	margin: 0 2px;
	font-size: 1.4rem;
	font-weight: bold;
}
.pager .nav-links .current {
	background: var(--txtcolor);
	border: 1px solid var(--txtcolor);
	color: #fff;
}
.pager .nav-links a:hover {
	background: var(--txtcolor);
	color: #fff;
}