@keyframes slide-forward-in {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}


@keyframes slide-forward-out {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}


@keyframes slide-backward-in {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}


@keyframes slide-backward-out {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes slide-fade {
    from {
        opacity: 0.05;
    }

    to {
        opacity: 1;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    line-height: 1.4em;
}

body {
    /*レイアウト動的変更時にリサイズがループすることがあるため*/
    overflow-y: scroll;
}

img {
    max-width: 100%;
}

.eden-lesson-page-title {
    line-height: 42px;
    height: 44px;
    padding-left: 10px;
    border-width: 0px 0px 3px 0px;
    font-weight: bold;
}

.eden-lesson-page-header-space {
    height: 44px;
}

.eden-lesson-comment-header {
    background-color: #eee;
    padding: 4px;
}

.MuiDrawer-paper {
    width: 260px;
}

@media (min-width: 920px) {
    .eden-lesson-page-title {
        position: fixed;
        width: 100%;
    }
}

@media (max-width: 920px) {
    .eden-lesson-page-header-space {
        display: none;
    }

    .MuiDrawer-paper {
        width: 90% !important;
    }
}

.hamburger-button:after {
    display: inline;
    content: "MENU";
    margin-top: 3em;
    margin-left: -3.2em;
    margin-right: 5px;
    font-size: 8px;
    color: #000;
}

video,
div {
    box-sizing: border-box;
}

select,
input[type="text"] {
    font-size: 1em;
    padding: 3px;
}

.eden-python-gimmick-dataframe {
    border-collapse: collapse;
    width: 100%;
}

.eden-python-gimmick-dataframe th {
    background-color: #eee;
    text-align: center;
}

.ed_quiz_desc {
    display: none;
    padding: 5px;
    border: 2px solid #a33;
    background-color: #ffeeee;
    border-radius: 3px;
    margin-bottom: 2px;
}

.ed_quiz_desc_correct {
    color: #42AA42;
}

.ed_quiz_desc_wrong {
    color: #f33;
}