@charset "utf-8";

/* topWrap */
.topWrap{
	position: relative;
}
.topWrap:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	background-image: url(../images250808/top/bg01.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.4;
}
.topWrap_inner{
	position: relative;
}
@media (max-width:1024px){
	.topWrap:before{
		background-image: url(../images250808/top/bg01_u1024.svg);
	}
}

/* pageTitle */
.pageTitle{
	padding: 80px 0 50px 0;
	text-align: center;
}
.pageTitle h2{
	font-family: "Jost", sans-serif;
	font-size: 2em;
	font-weight: 300;
	letter-spacing: 0.1em;
	color: #0d102c;
}

/* table */
.mainTable,
.subTable{
	margin-bottom: 50px;
}
.dateTable{
	margin-bottom: 80px;
}
.mainTable>.title,
.subTable>.title{
	text-align: center;
	margin-bottom: 30px;
}
.mainTable>.title>h3,
.subTable>.title>h3{
	font-size: 1.15em;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.tableWrap{
	max-width: 1100px;
	width: 80%;
	margin: 0 auto;
	position: relative;
}
.tableWrap::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,transparent 0%,#fff 40%,#fff 100%);
}
.tableWrap>table{
	width: 100%;
	border-collapse: collapse;
	position: relative;
}
.tableWrap table tr th{
	width: 35%;
	font-size: 1em;
	font-weight: 400;
	padding: 0.75em 1em;
	box-sizing: border-box;
	border-bottom: 1px solid #0d102c;
	position: relative;
}
.tableWrap table tr th:after{
	content: '';
	position: absolute;
	width: 1px;
	height: 50%;
	background-color: #0d102c;
	top: 50%;
	right: 0%;
	transform: translateY(-50%);
}
.tableWrap table tr td{
	width: 65%;
	font-size: 0.9em;
	line-height: 1.8;
	font-weight: 400;
	padding: 0.75em 1em;
	box-sizing: border-box;
	border-bottom: 1px solid #0d102c;
}
@media (max-width:768px){
	.tableWrap table tr th,
	.tableWrap table tr td{
		display: block;
		width: 100%;
	}
	.tableWrap table tr th{
		border-bottom: none;
		color: #fff;
		background-color: rgba(13, 16, 44, 0.7);                    
	}
	.tableWrap table tr td{
		padding: 0.75em 1em 1.25em 1em;
		border-bottom: none;
	}
	.tableWrap table tr th:after{
		width: 0;
	}
}
@media (max-width:500px){
	.tableWrap{
		width: 90%;
	}
}