/* tooltip  */
.tooltip2 {
	position: relative;
	cursor: pointer;
	display: inline-block;
}

.tooltip2 p {
	margin: 0;
	padding: 0;
}

.description2 {
	display: none;
	position: absolute;
	padding: 12px;
	font-size: 12px;
	line-height: 1.6em;
	color: #fff;
	border-radius: 5px;
	background: #000;
	width: 250px;
}

.description2:before {
	content: "";
	position: absolute;
	top: 0;
	right: 95%;
	border: 15px solid transparent;
	border-top: 15px solid #000;
	margin-left: -15px;
	transform: rotateZ(90deg);
}

.tooltip2:hover .description2 {
	display: inline-block;
	top: -25%;
	left: 110%;
	z-index: 1;
}

@media (max-width: 599px) {

	.description2:before {
		content: "";
		position: absolute;
		top: -24px;
		right: 60%;
		border: 15px solid transparent;
		border-top: 15px solid #000;
		margin-left: -15px;
		transform: rotateZ(180deg);
	}

	.tooltip2:hover .description2 {
		display: inline-block;
		top: 30px;
		left: 0px;
	}

}

/* アコーディオン */

.webst-accordion {
	margin-inline: 0;
	border-bottom: 1px solid #a9a9a9;
	margin-bottom: 20px;
}

.webst-accordion_title {
	position: relative;
	border: none;
	display: block;
	list-style: none;
	width: 100%;
	cursor: pointer;
	padding: 1.4em 2em 1.4em 1.4em;
	line-height: 1.6em;
}

summary.webst-accordion_title::-webkit-details-marker {
	display: none;
}

.webst-accordion_title:after {
	content: "＋";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 20px;
	line-height: 1;
	padding: 0;
	font-size: 18px;
	pointer-events: none;
}

.webst-accordion::details-content {
	opacity: 0;
	block-size: 0;
	transition: .3s;
	transition-property: display, opacity, block-size, padding;
	transition-behavior: allow-discrete;
	line-height: 1.6em;
}

.webst-accordion .webst-accordion_content {
	padding: 0 2em 0 3em;
}

.webst-accordion .webst-accordion_content>*:first-of-type {
	margin-top: 0;
}

.webst-accordion .webst-accordion_content>*:last-of-type {
	margin-bottom: 0;
}

.webst-accordion[open]::details-content {
	opacity: 1;
	block-size: auto;
	block-size: calc-size(auto, size);
}

.webst-accordion[open] .webst-accordion_content {
	padding: 0 2em 1.4em 3em;
}

.webst-accordion[open] .webst-accordion_title:after {
	content: "ー";
	font-size: 18px;
}

/* テーブル表もっと見る */
.list tr {
	height: auto;
	transition: all 0.4s ease 0s;
}

.list tr.is-hidden,
.list tr.is-hidden th,
.list tr.is-hidden td {
	visibility: hidden;
	opacity: 0;
	height: 0;
	margin: 0 10px;
	padding: 0;
	display: none;
}

.more-tablerow {
	text-align: center;
	margin-top: -10px;
}

.more-tablerow button {
	border: #ccc solid 1px;
	cursor: pointer;
	outline: none;
	color: #666;
	padding: 0;
	line-height: 36px;
	width: 60%;
	border-radius: 5px;
	box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
	transition: 0.3s ease-in-out;
	font-size: 17px;
	background: white;

}

.more-tablerow button:hover {
	background: #FFF;
	color: #ff7373;
	border: solid #ff7373 1px;
	box-shadow: 0 15px 30px -5px rgb(0 0 0 / 25%);
	transform: translateY(-2px);
}