/********************************
* インナー
********************************/

/********************************
* フォント
********************************/

/********************************
* カラー
********************************/

/********************************
* レイヤー
********************************/

.wvh-news-tabs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 1.25rem 2.5rem;
}

.wvh-news-tabs__inner {
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.wvh-news-tabs__item {
	border: 1px solid #fbf7ef;
	border: 1px solid var(--bg_all, #fbf7ef);
	font-size: 1rem;
	letter-spacing: 0.32px;
	min-width: 10.625rem;
	padding: 0.625rem 1.25rem;
	text-align: center;
}

.wvh-news-tabs__item[aria-selected=true] {
	background: #fbf7ef;
	pointer-events: none;
}

.wvh-news-tabs__item[aria-selected=false] {
	background: transparent;
}

.wvh-news-tabs__contents {
	margin-top: 2.5rem;
}

.wvh-news-tabs__content-wrap {
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, translate 0.3s ease;
	transition: opacity 0.3s ease, translate 0.3s ease;
	translate: 0 20px;
	visibility: hidden;
}

.wvh-news-tabs__content-wrap.js-show {
	height: -moz-fit-content;
	height: -webkit-fit-content;
	height: fit-content;
	opacity: 1;
	translate: 0;
	visibility: visible;
}

.title {
	font-size: clamp(22px, 1.6666666667vw, 32px);
	font-weight: 700;
	line-height: 1;
	line-height: 1.3;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	z-index: 2;
}

.title::before {
	bottom: -0.9375rem;
	color: #c4e7bf;
	content: attr(data-title);
	font-family: "Poppins", sans-serif;
	font-size: 9.375rem;
	font-size: clamp(80px, 7.8125vw, 150px);
	font-weight: 400;
	left: 50%;
	letter-spacing: 2px;
	line-height: 1;
	position: absolute;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: -1;
}

.title--white::before {
	color: #fff;
}

@media (any-hover: hover) {

.wvh-news-tabs__item[aria-selected=false]:hover {
	background: #fbf7ef;
	cursor: pointer;
}

}

@media screen and (max-width: 768px) {

.wvh-news-tabs {
	gap: 1.25rem;
}

.wvh-news-tabs__item {
	min-width: 0;
	min-width: initial;
}

.title {
	font-size: 1.375rem;
}

.title::before {
	bottom: -0.625rem;
	font-size: 5rem;
}

.title.title--small::before {
	font-size: 3.75rem;
}

}

