/*-------------------------------------------*/
/*  ページ内タブ機能のスタイル
/*-------------------------------------------*/
/* タブ(2段で表示) */
.tab_container {
	margin-bottom: 40px;
}
.tab_group {
	display: grid;
	position: relative;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, auto);
	justify-content: center;
	align-items: flex-end;
	top: 15px;
	clip-path: inset(-13px 0 13px 0);
}
.tab_group .tab:nth-child(n+5) {
	margin-top: -15px;
	z-index: 1;
}
.tab {
	background: #fff;				/*  タブカラー */
	border: 1px solid #ccc;		/* 枠線 */
	border-radius: 10px 10px 0 0;
	border-bottom: none;
	color: #67be8d;				/* テキスト */
	cursor: pointer;
	display: inline-block;
	font-size: 1.1rem;
	font-weight: bold;
	margin: 0 5px;
	padding: 8px 0 12px;
	text-align: center;
	transition: 1s;
	height: 60px;
}
.tab.is_active {
	background: #67be8d;		/* タブカラー */
	color: #fff;
	transform: translateY(-8px);
}

/* パネル */
.panel_group {
	min-height: 100px;
	border: 3px solid #000;
	color: #fff;
	font-size: 1.2rem;
	--base-size: 1.6vw;
	position: relative;
	z-index: 5;
}
.panel {
	position: relative;
	opacity: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	transition: opacity 0.5s;
	z-index: 2;
	
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #77777770;
	z-index: -1;
}
.panel.soudan {
	background-image: url(https://live-salvation.co.jp/data/custom-tab_assets/soudan.png);
}
.panel.seikatsu {
	background-image: url(https://live-salvation.co.jp/data/custom-tab_assets/seikatsu.png);
}
.panel.yuigon {
	background-image: url(https://live-salvation.co.jp/data/custom-tab_assets/yuigon.png);
}
.panel.syousyo {
	background-image: url(https://live-salvation.co.jp/data/custom-tab_assets/syousyo.png);
}
.panel.kouken {
	background-image: url(https://live-salvation.co.jp/data/custom-tab_assets/kouken.png);
}
.panel.fudousan {
	background-image: url(https://live-salvation.co.jp/data/custom-tab_assets/fudousan.png);
}
.panel.souzoku {
	background-image: url(https://live-salvation.co.jp/data/custom-tab_assets/souzoku.png);
}
.panel.syobun {
	background-image: url(https://live-salvation.co.jp/data/custom-tab_assets/syobun.png);
}
.panel.pc-sp {
	background-image: url(https://live-salvation.co.jp/data/custom-tab_assets/pc-sp.png);
}
.panel.is_show {
	opacity: 1;
	height: auto;
	min-height: 1000px;
	transition: opacity 12s;
	padding: 0 1.5rem 1rem;
}

.panel h3 {
	margin-bottom: 10px;
	color: #006e54;
	text-shadow: 0px 0px 8px #ffffff;
	margin-top: 1rem;
}
h3:where(:not(.wp-block-post-title)) {
	padding: 0;
}

.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 {
	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;
}

/* 動作 */
@media screen and(max-width: 480px) {
	.tab {
		padding: 10px 0 7px;
	}
	
	.tab.is-active {
		padding-bottom: 15px;
	}
}