.coach {
    position: relative;
    background: url('../images/BG_coach.svg') center top no-repeat;
    background-color: var(--mainBlue);
    background-size: 100% auto;
}

.coach:before {
    content: '';
    margin: -5px 0 50px;
    width: 80%;
    max-width: 750px;
    height: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.5);
}

.coach .en {
    color: white;
}

.coach_area {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 50px 25px;
    margin-bottom: 150px;
    border-radius: 50px;
    background: url('../images/pattern_dot_s_blue.svg') calc( 100% - 50px ) calc( 100% - 50px ) no-repeat;
    background-size: 75px;
    background-color: white;
}

.coach_area > img {
    margin: 0 50px -100px -100px;
    width: calc( 50% + 50px );
}

.coach_list {
    display: flex;
    flex-direction: column;
    margin: 25px 0;
}

.coach_list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.coach_list li:hover {
    transform: scale(1.05);
}

.coach_list li + li {
    margin-top: 25px;
}

.coach_list li img {
    width: 150px;
    height: 150px;
    border: #f2f2f2 10px solid;
    border-radius: 150px;
    margin-right: 25px;
}

.teacher_text > * + * {
    margin-top: 15px;
}

.teacher_text .name {
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: var(--deepGreen);
}

.teacher_text li {
    padding-left: 25px;
}

.coach_info_area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999;
}

.coach_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 550px;
    padding: 50px;
    border-radius: 50px;
    background-color: white;
    z-index: 999999999999999;
}

.coach_info > img {
    width: 200px;
    height: 200px;
    margin-bottom: 25px;
    border-radius: 200px;
    border: #f2f2f2 10px solid;
}

.coach_info_name {
    padding: 15px 25px;
    margin-bottom: 25px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: var(--deepGreen);
}

.coach_info_content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.coach_info_section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.coach_info_section + .coach_info_section {
    margin-top: 35px;
}

.coach_info_tag {
    width: 50px;
    margin-right: 25px;
}

.coach_info_detail {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: calc( 100% - 75px );
    line-height: 35px;
    font-size: 18px;
}

.coach_info_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


@media screen and (max-width: 1023px) {

    .coach {
        position: relative;
        background: url('../images/BG_coach.svg') center bottom no-repeat;
        background-color: var(--mainBlue);
        background-size: 100% auto;
    }

    .coach_area {
        flex-direction: column-reverse;
        align-items: center;
        padding: 25px;
        margin-bottom: 50px;
    }

    .coach_area > img {
        margin: 0 0 -75px 0;
        width: 100%;
    }

    .coach_list li img {
        width: 100px;
        height: 100px;
    }

    .coach_info {
        width: calc( 100% - 50px );
        padding: 25px;
        border-radius: 25px;
    }
    
    .coach_info_detail {
        line-height: 30px;
        font-size: 16px;
    }
   
}