/* パネル */
.panel_group {
	min-height: 100px;
	color: #fff;
	background-color: #33333370;
	font-size: 1.2rem;
	--base-size: 1.6vw;
	position: relative;
	z-index: 5;
}

h2:where(:not(.wp-block-post-title)) {
	border-top: 2px solid #fff;
	background-color: #33333370;
}
h3:where(:not(.wp-block-post-title))::after {
	border-bottom: 1px solid #fff;
}
.panel h3 {
	margin-bottom: 10px;
	color: #fff;
	/* color: #006e54; */
	text-shadow: 0px 0px 8px #ffffff;
	margin-top: 1rem;
}
h3:where(:not(.wp-block-post-title)),
h5:where(:not(.wp-block-post-title)) {
	padding: 0;
}

.panel-text.small {
	font-size: 1rem;
}

.panel-table,
.item_group {
	padding: 1rem;
	border-collapse: separate;
	border: 0px solid #fff;
}
.panel-table table,
.panel-table th,
.panel-table td {
	font-size: inherit;
}
.panel-text.end,
.panel-list.end,
.panel-table.end,
.content-text.end,
.content-list.end,
.content-table.end {
	margin-bottom: 4.5rem;
}

/* メニュー */
.pull-down_container {
	margin-top: 0.5rem;
	padding: 0rem 1rem 1rem;
}
.item_group {
	width: auto;
	margin-left: 1rem;
	padding: 10px;
}
.item {
	cursor: pointer;
	border: 1px solid #ccc;
	background: #fff;
	font-size: clamp(0.8rem, var(--base-size), 1.4rem);
	color: #67be8d;
	transition: 0.5s;
}
.item.is_active {
	background-color: #67be8d;
	color: #fff;
	transition: 0.7s;
}

/* テキストエリア */
.content {
	max-height: 0;
	opacity: 0;
	transition: 1s;
}
.content.is_show {
	opacity: 1;
	max-height: 1300px;
	transition: 1s;
}

/* 動画エリア */
/* 音声付き動画注意書き */
.video-caption {
	font-size: 1rem;
	color: #fff;
	background-color: #33333370;
	margin-bottom: -0.2rem;
}
.omoi-tsunagu-video {
	border-radius: 15px;
	background-color: #000;
	padding: 5px;
}
.omoi-tsunagu-video video {
	overflow: hidden;
	background-color: #000;
	border-radius: 10px;
}