.prepage{
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #fff;
	z-index: 20;
	opacity: 1;
	animation: prepage 1s 2s forwards;
}
.prepage .prepage_in{
	width: 30%;
	max-width: 600px;
}


@keyframes prepage{
	0% {
		opacity: 1;
		transform: scale(1);
	}
	99%{
		opacity: 0;
		transform: scale(1.05);
	}
	100%{
		opacity: 0;
		transform: scale(1.05);
	}
}
.page_title{
	padding-top: 180px;
	text-align: center;
}
.page_title .page_title_en{
	font-size: 42px;
	color: #c6b198;
}
.page_title .page_title_ja{
	font-size: 18px;
}
.tab_wrapper {
	margin-top: 60px;
	border-bottom: 3px solid #C3C3C3;
}

.tab_wrapper>ul {
	display: flex;
	gap: 15px;
	width: 98%;
	max-width: 1000px;
	margin: 0 auto 0px;
}

.tab_wrapper>ul li {
	width: calc(100% / 2);
	text-align: center;
	background: #666666;
	color: rgb(255 255 255 / 19%);
	padding: 1.4em 1em;
	margin: 0;
	font-size: min(2.6vw, 22px);
	font-weight: 500;
	cursor: pointer;
	-webkit-transition-duration: 0.7s;
	transition-duration: 0.7s;
	line-height: 1;
	letter-spacing: 0.1em;

	pointer-events: none;
}

.tab_wrapper>ul li.active {
	background: #C6B198;
	color: #fff;
	position: relative;
}


.outline_content{
	width: 96%;
	max-width: 1000px;
	margin: 60px auto 0;
}

.title_content{
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: bold;
}
.table{
    font-family: 'Noto Serif Japanese',"Times New Roman",Times,"Sawarabi Mincho","游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝B",serif;
}
.table table{
	border-collapse: collapse;
	table-layout: fixed;
	line-height: 1.2;
}
.table table tr{
	border-bottom: 1px solid #e3e3e3;
}
.table table th {
	width: 200px;
	padding: 20px 10px 20px 0;
	font-weight: bold;
}
.table table td{
	padding: 20px 0;
}
.preview_ad{
	margin-top: 40px;
}
.preview_ad .preview_ad_title{
	display: inline-block;
	margin-bottom: 10px;
	padding: 5px 5px 3px;
	border: 1px solid #000;
}
.preview_ad .note{
	margin-top: 5px;
	font-size: 12px;
	line-height: 1.4;
}


@media screen and (max-width: 768px) {
	.page_title{
		padding-top: 100px;
	}
	.page_title .page_title_en{
		font-size: 32px;
	}
	.page_title .page_title_ja{
		font-size: 16px;
		margin-top: 5px;
	}
	.prepage .prepage_in{
		width: 80%;
	}
	.tab_wrapper {
		margin-top: 40px;
	}
	.tab_wrapper>ul li{
		font-size: 16px;
		padding: 15px 5px 10px;
	}
	.outline_content{
		padding: 0 10px;
	}
	.table table {
		display: block;
		font-size: 14px;
	}

	.table table tr {
		display: block;
		border-bottom: 1px solid #e3e3e3;
	}

	.table table th {
		display: block;
		width: 100%;
		padding: 20px 0 0;
	}

	.table table td {
		display: block;
		padding: 10px 0 20px;
	}
}

#outline .foot_tell{
	display: block;
}