/* カスタム CSS をここに入力してください */
.toc-area_listc ol ol li{
	list-style: circle;
}

/*ボタンCSS*/
.shiny-btn2 {
    display: block;
    position: relative;
    width: 60%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 30px auto;
    background-color: #008000;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(0,100,0,1);/*影の色(rgbaの値を変更)*/
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
}
.shiny-btn2:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shiny-btn2::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    transition: 0.2s;
}
