@charset "UTF-8"; 
     
     
    .tab-btn {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        border-bottom: 1px solid var(--data);
    }

    .btn a.is-active {
        background-color:var(--data);
        color: #ffff;
    }


    .tab-contents-item {
        display: none;
        width: 100%;
        height: auto;
        justify-content: center;
    }
    .tab-contents-item.is-active {
        display: block;

    }
    .tab-contents-item>p {
        margin: auto;
        height: 40px;
        opacity: 0;
    }
    .tab-contents-item.is-active>p {
      animation:  fadeinAnime 2s forwards;
    }

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

@media print, screen and (min-width: 768px) {
    .btn {
        flex-basis: 30%;
        text-align: center;
        margin-right: 5px;
    }
    .btn a {
        display: block;
        position: relative;
        font-size: 16px;
        font-weight: bold;
        padding: 8px;
        text-decoration: none;
        line-height: 3;
        color: var(--data);
        background-color: #ffff;
        cursor: pointer;
        border-left: var(--data) 1px solid;
        border-right: var(--data) 1px solid;
        border-top: var(--data) 1px solid;
    }
    
}



@media print, screen and (max-width: 767px)  {
    .btn {
        flex-basis: 30%;
        text-align: center;
        margin-right: 5px;
    }
    .btn a {
        display: block;
        position: relative;
        font-size: 13px;
        font-weight: bold;
        padding: 8px;
        text-decoration: none;
        line-height: 2;
        color: var(--data);
        background-color: #ffff;
        cursor: pointer;
        border-left: var(--data) 1px solid;
        border-right: var(--data) 1px solid;
        border-top: var(--data) 1px solid;
    }
}