@charset "UTF-8";
/* --------------------------------------------------------------------------------
Tabのレイアウト
-------------------------------------------------------------------------------- */
/*tabの形状*/
.tab { display: flex; flex-wrap: wrap; }
.tab li a { display: block; background: url(../images/home/ico-bk.png) left top no-repeat,rgb(243, 205, 89 ,0.6); width:200px; padding:10px 0px 10px 30px; color: #999; font-weight:bold; text-decoration:none;}
.tab li:nth-child(2) a { background: url(../images/home/ico-bk.png) left top no-repeat,rgb(154, 204, 51,0.6); color:#FFF;}
/*liにactiveクラスがついた時の形状*/
.tab li.active a { background: url(../images/home/ico-bk.png) left top no-repeat,#f3cd59; color:#1267ab;}
.tab li.active:nth-child(2) a { background: url(../images/home/ico-bk.png) left top no-repeat,#9acc33; color:#fff;}
/*エリアの表示非表示と形状*/
.area { display: none;/*はじめは非表示*/ opacity: 0;/*透過0*/ background: #fff; padding: 20px 20px; }
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active { display: block;/*表示*/ animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/ animation-duration: 2s; animation-fill-mode: forwards;background:rgb(154, 204, 51,0.3);}
.area.is-active:nth-child(2) {background:rgb(243, 205, 89 ,0.3);}
 @keyframes displayAnime {  from {
 opacity: 0;
}
to { opacity: 1; }
}
/*========= レイアウトのためのCSS ===============*/

