.teacher_content {
    .container {
        @media (min-width:768px) {
            width: min(95%, 133rem);
        }
        .content_block {
            @media (min-width:768px) {
                display: flex;
                position: relative;
            }
            .item {
                margin: 0 auto;
                padding: 2.5rem 0;
                position: relative;
                @media (min-width:768px) {
                    width: 47%;
                    padding: 0 2%;
                    position: static;
                }

                &:nth-child(1) {
                    padding-top: 0;
                }
                &:nth-child(2)::before {
                    display: block;
                    content:"";
                    width: 100%;
                    border-top: 0.5rem dotted #8AB5D4;
                    position: absolute;
                    top: -0.5rem;
                    left: 0;
                    @media (min-width:768px) {
                        width: 0;
                        height: 100%;
                        border-top: none;
                        border-left: 0.5rem dotted #8AB5D4;
                        top: 0;
                        left: calc(50% - 0.25rem);
                    }
                }
                }
                .name {
                    color: var(--main-blue);
                    font-size: var(--fs-large);
                    margin: 1em 0;
                }
                .text {
                    & dt {
                        margin-bottom: 0.5em;
                    }
                    & dd {
                        line-height: 1.75;
                        margin-bottom: 2rem;

                        & p + p {
                            margin-top: 0.5em;
                        }
                    }
                }
                .introduce_list li::before {
                    content:"〇";
                }
            }
        }
    }
}

/*--------------------------------------------------------------
# 日本人講師
--------------------------------------------------------------*/
#teature_japan .section_title::before {
    width: min(12vw, 7rem);
    aspect-ratio: 70 / 74;
    background-image: url(/assets/img/icon_japan.png);
}
/*--------------------------------------------------------------
# ネイティブ講師
--------------------------------------------------------------*/
#teature_abroad {
    padding: 7rem 0;
    @media (min-width:768px) {
        padding: 10rem 0 8.4rem;
    }

    .section_title::before {
        width: min(12vw, 6.5rem);
        aspect-ratio: 65 / 67;
        background-image: url(/assets/img/icon_abroad.png);
    }
}