.main-wrap01 {
    justify-content: space-around;
}
.tab-container {
    width: 100%;
    margin-bottom: 2rem;
    background-size: 50%;
    background-position: top;
    background-repeat: repeat;
}
.main-contents {
    width: 100%;
}
.tab-box {
    width: 100%;
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.tab-box label {
    width: 50%;
    display: block;
    padding: 0.5rem 0;
    margin-right: 0.1rem;
    color: #333;
    text-align: center;
    cursor: pointer;
    border: 1px solid #555;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(255,255,255,.6);
}
.tab-box label p {
    font-size: 0.75rem;
}
.tab-box label.active {
    /* background: rgba(0, 0, 0, 0); */
    background: linear-gradient(30deg, #646363 0%, #b0aeae 50%, #646363 100%);
    color: #fff;
    font-weight: bold;
}
.panel-area {
  padding: 2rem 0 0;
}
.main-tab-panel {
  width: 100%;
  display: none;
}
.main-tab-panel.active {
  display: block;
}

@media screen and (min-width: 769px) {
    .tab-box label {
        font-size: 1rem;
    }
    .main-tab-inner {
        width:60%;
        margin:0 auto;
    }
    .main-tab-panel {
        width: 100%;
        display: none;
        padding-left: 1rem;
    }
}
