@charset "utf-8";

/*tabの形状*/
.tabmenu {
	display: flex;
	flex-wrap: wrap;
}

.tabmenu li a {
	display: block;
	background: #ddd;
	margin: 0 2px;
	padding: 10px 20px;
}

/*liにactiveクラスがついた時の形状*/
.tabmenu li.tabmenu-active a {
	background: #fff;
}


/*エリアの表示非表示と形状*/
.tabmenu-area {
	display: none;
	/*はじめは非表示*/
	opacity: 0;
	/*透過0*/
	background: #fff;
	padding: 50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.tabmenu-area.is-active {
	display: block;
	/*表示*/
	animation-name: displayAnime;
	/*ふわっと表示させるためのアニメーション*/
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@keyframes displayAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* アレンジ */
.tabmenu-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 6rem;
	padding: 0 12rem;
}

.tabmenu {
	flex-direction: column;
	width: calc((100% - 6rem) / 3);
}

.tabmenu-area {
	width: calc((100% - 6rem) / 3 * 2);
	padding: 0;
}

.tabmenu li a {
	margin: 0;
	padding: 1.6rem 0;
	/* background-color: transparent; */
	text-align: justify;
	text-justify: inter-ideograph;
	font-size: 1.6rem;
	font-family: 'Shippori Mincho', serif;
	padding-bottom: 3.2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #494949;
	overflow-wrap: break-word;
	max-width: 720px;
	background-color: transparent;
}

.tabmenu li.tabmenu-active a {
	color: #ad976e;
}

/* タブレット版 */
@media screen and (min-width:481px) and (max-width:1280px) {
	.tabmenu-wrapper {
		gap: normal;
		display: block;
		padding: 0 4.8rem;
	}

	.tabmenu-title {
		margin-bottom: 4.8rem;
		text-align: center;
	}

	.tabmenu {
		/* flex-direction: row; */
		/* justify-content: space-between; */
		width: 100%;
		margin-bottom: 9.6rem;
	}

	.tabmenu-area {
		width: 100%;
	}

	.tabmenu li a {
		padding-bottom: 1.6rem;
		border-bottom: 0.1rem solid #c5c5c5;
	}
}

/* スマホ版 */

@media screen and (max-width:480px) {
	.tabmenu-wrapper {
		gap: normal;
		display: block;
		padding: 0 2.4rem;
	}

	.tabmenu {
		/* flex-direction: row; */
		/* justify-content: space-between; */
		width: 100%;
		margin-bottom: 4.8rem;
	}

	.tabmenu li a {
		font-size: 1.4rem;
		padding-bottom: 1.6rem;
		border-bottom: 0.1rem solid #c5c5c5;
	}

	.tabmenu-area{
		width: 100%;
	}

	.tabmenu-title {
		text-align: center;
		margin-bottom: 4.8rem;
	}
}