/**
 * Concept Item
 */

 .tok-concept-item {
    display: flex;
}
.tok-concept-item.is-reverse {
    flex-direction: row-reverse;
}

.tok-concept-col {
    flex: 1;
}
.tok-concept-image {
    padding-right: 20px;
    padding-left: 0;
}
.tok-concept-item.is-reverse .tok-concept-image {
    padding-right: 0;
    padding-left: 20px;
}
.tok-concept-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.tok-concept-heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 65px;
    text-box: trim-both cap alphabetic;
}
.tok-concept-body {
    padding: 80px 40px 0;
}
.tok-concept-text {
    font-size: 16px;
    line-height: 1.8;
    text-box: trim-both cap alphabetic;
}

/* PC/SP表示切り替え */
.tok-concept-heading-pc,
.tok-concept-text-pc {
    display: block;
}
.tok-concept-heading-sp,
.tok-concept-text-sp {
    display: none;
}

/* エディタ内タブスタイル */
.tok-concept-tabs .components-tab-panel__tabs {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
.tok-concept-tabs .components-button {
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
}
.tok-concept-tabs .components-button.is-active {
    border-bottom: 2px solid #2271b1;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .tok-concept-heading-pc,
    .tok-concept-text-pc {
        display: none;
    }
    .tok-concept-heading-sp,
    .tok-concept-text-sp {
        display: block;
    }
    .tok-concept-item,
    .tok-concept-item.is-reverse {
        flex-direction: column-reverse;
        gap: 39px;
    }
    .tok-concept-image,
    .tok-concept-item.is-reverse .tok-concept-image {
        padding: 0;
    }
    .tok-concept-heading {
        margin-bottom: 39px;
        font-size: 1.1rem;
        text-align: center;
    }
    .tok-concept-body {
        padding: 0;
    }
    .tok-concept-text {
        font-size: .85rem;
        text-align: center;
    } 
}