.tabify-wrapper {}
    .tabify-wrapper .navi {
        margin: 0;
        padding: 0;
        display: flex !important;
    }
    .tabify-wrapper.ghost .navi {
        display: flex !important;
        justify-content: space-between;
        text-align: center;
    }
    .tabify-wrapper .navi li {
        background-color: #f4f4f4;
        border-left: 2px solid #fff;
        border-right: 2px solid #fff;
        cursor: pointer;
        color: #bababa;
        font-size: 1em;
        font-weight: bold;
        line-height: 1em;
        padding: 15px;
        position: relative;
        text-align: center;
        top: 1px;
        width: 100%;
    }
    .tabify-wrapper.ghost .navi li {
        background-color: transparent;
        border: 0;
        color: #7b7b7b;
        float: none;
        font-weight: normal;
        width: auto;
        padding: 0 15px;
        text-decoration: underline;
    }
        .tabify-wrapper .navi li.active {
            background-color: #fff;
            border: 1px solid #dddddd;
            border-bottom: 1px solid #fff;
            color: #7b7b7b;
            padding-top: 14px;
        }
        .tabify-wrapper.ghost .navi li.active {
            background-color: transparent;
            border: 0;
            color: inherit;
            padding: 0 15px;
            text-decoration: none;
        }
    .tabify-wrapper .content {
        border: 1px solid #dddddd;
        display: none;
        padding: 30px;
    }
    .tabify-wrapper.ghost .content {
        border: 0;
        display: none;
        padding: 30px 0 0 0;
    }
        .tabify-wrapper .content > *:first-child {
            margin-top: 0;
        }
    .tabify-wrapper .content.active {
        display: block;
    }
    .tabify-wrapper .navi .icon {
        margin-right: 7px;
    }
    .tabify-wrapper.ghost p,
    .tabify-wrapper.ghost * {
        font-size: 14px;
        line-height: 1.5em;
    }
    .tabify-wrapper.ghost a {
        color: #7b7b7b;
        text-decoration: underline;
    }
    
@media screen and (max-width: 768px) {
	.tabify-wrapper.ghost .navi {
		display: block !important;
		text-align: left;
	}
		.tabify-wrapper.ghost .navi li {
			display: inline-block;
		}
}
    