/*
* 104.アクティブタブ
*/

/* アクティブなタブのスタイル */
.is-style-default>.c-tabList .c-tabList__button:hover, .is-style-default>.c-tabList .c-tabList__button[aria-selected=true] {
    background-color: var(--color_main); 
    color: white; 
}

/* 非アクティブなタブのスタイル */
.is-style-default>.c-tabList .c-tabList__button {
    background-color: #ddebf9; 
    color: black; 
    opacity: 1
}

.c-tabList .c-tabList__item{
	padding:5px 5px;
}

