@charset "UTF-8";

/*=== タブ切り替え　====================================================*/

.tab {
    max-width: 1040px;
    margin: 96px auto;
    padding: 0 20px;
}

.tab-list {
    display: flex;
    justify-content: center;
    gap: 3%;
    margin-bottom: 40px;
}

.tab-list-item {
    width: 35%;
    background: var(--button-primary);
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    padding: 19px 0;
    font-weight: bold;
    cursor: pointer;
    border: none;
    opacity: 0.3;
}

.tab-contents {
    display: none;
}
.is-btn-active {
    opacity: 1;
}

.is-contents-active {
    display: block;
}

@media screen and (max-width: 768px) {
    .tab-list-item {
        width: 100%;
        padding: 28px 36px;
        font-size: 2rem;
    }
    .tab {
        margin: 76px 0;
    }
    .tab {
        padding-left: 20px;
        padding-right: 20px;
    }
}