@charset "UTF-8";

/*==================================================================
	Outline setting
===================================================================*/
.tab_nav {
	max-width: 645px;
	margin: auto;
}
.tab_nav ul {
	display: grid;
	position: relative;
	justify-content: center;
	gap: 15px;
	grid-template-columns: repeat(2,1fr);	
}
.tab_nav ul li  {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	line-height: 1.4;
	font-weight: 500;
	color: #656668;
	background-color: #b3a9a7;
	cursor: pointer;
	padding: 11px;
	text-align: center;
}
.tab_nav .active  {
	background-color: #743237;
	color: #ffffff;
}
.tab_content { padding: 90px 0 0;}
.tab_item { display: none;}
.tab_item:first-child { display: block;}
@media screen and (max-width: 767px) {
	.tab_nav ul li {
		padding: 10px;
		font-size: 1.4rem;
		letter-spacing: 0.01em;
	}
	.tab_content { padding: 40px 0 0;}
}

.outline_wrap {
	background: #fff;
	padding: 115px 15px 1px;
}
.sec_outline {
	max-width: 960px;
	margin: 0 auto 100px;
}
.outline_ttl {
	border-bottom: 1px solid #414042;
	color: #414042;
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.tbl_outline { width: 100%;}
.tbl_outline th {
	border: 1px solid #414042;
	background: #555;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.3;
	padding: 8px 5px;
	text-align: center;
	width: 186px;
}
.tbl_outline td {
	background: #fff;
	border: 1px solid #414042;
	color: #414042;
	font-size: 1.4rem;
	line-height: 1.3;
	padding: 8px 18px;
}
.tbl_outline td a {
	color: #414042;
	text-decoration: underline;
}
.tbl_outline td a:hover { text-decoration: none;}
.d_inline_block { display: inline-block;}
@media only screen and (max-width: 767px) {
	.outline_wrap {
		padding: 60px 15px 0;
	}
	.sec_outline { margin-bottom: 50px; }
	.outline_ttl { font-size: 1.6rem; }
}
@media only screen and (max-width: 480px) {
	.tbl_outline th, .tbl_outline td {
		display: block;
		margin-top: -1px;
		width: 100%;
	}
}