@charset "UTF-8";

/* --------------------------------------------------------------------------------
Tabのレイアウト
-------------------------------------------------------------------------------- */
/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
}
.tab li{
	width:100px;
	text-align: center;
	
	
}
.tab li a{
	display: block;
	background:#EBEFFF;
	color:hsla(36,50%,27%,1.00);
	margin:0 2px;
	padding:10px 10px;
	
	border-top-left-radius: 20px;
  	border-top-right-radius: 20px;
  	border-bottom-right-radius: 0px;
  	border-bottom-left-radius: 0px;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#FFE9BA;
	color:hsla(36,50%,27%,1.00);
}


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

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

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.tab_list{
	list-style:none;
}

a{
	color:#333;
	text-decoration: none;
}


.area h2{
	font-size:1.2em;
	margin:0 0 20px 10px;
	color:hsla(36,50%,27%,1.00);
}

.area li{
	padding: 10px; 
	/*border: 1px solid #ddd;*/
}

