@charset "UTF-8";
/* plus.css  add 2023/2/24 */

.p-home__summary #tab_index {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 4px;
	width: 100%;
	max-width: 980px;
	margin: 0 auto 45px;
}

@media screen and (max-width:768px) {
	.p-home__summary #tab_index {
		margin-bottom: 25px;
	}
}

.p-home__summary #tab_index p {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .9em 1em;
	margin: 0;
	background-color: #F0F0F0;
	font-size: 27px;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.p-home__summary #tab_index p:first-of-type {
	border-radius: 15px 0 0 15px;
}

.p-home__summary #tab_index p:last-of-type {
	border-radius: 0 15px 15px 0;
}

@media screen and (max-width:768px) {
	.p-home__summary #tab_index p {
		font-size: 13px;
	}

	.p-home__summary #tab_index p:first-of-type {
		border-radius: 10px 0 0 10px;
	}

	.p-home__summary #tab_index p:last-of-type {
		border-radius: 0 10px 10px 0;
	}
}

.p-home__summary #tab_index p.active {
	background-color: #F4810E;
	color: #fff;
}

.p-home__summary #tab_index p.active::after {
	content: "";
	width: 22px;
	height: 20px;
	background: url(../img/common/fukidashi.svg) no-repeat center/contain;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 100%);
}

@media screen and (max-width:768px) {
	.p-home__summary #tab_index p.active::after {
		width: 18px;
		height: 16px;
		transform: translate(-50%, 50%);
	}
}



#l-wrapper article .p-home__summary ._datalist {
	display: none;
}

#l-wrapper article .p-home__summary ._datalist.active {
	display: block;
}
