@media (max-width: 767px) { 
    main {
        margin: 30px 0;
    }

    /* TOP IMAGE*/
    .work-top {
        position: relative;
        width: 100%;
        height: 100vh;
        margin-bottom: 60px;
    }
    .work-top img {
        width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    /* メイン */
    .flexbox {
        flex-wrap: wrap;
        display: flex;
        justify-content: space-between;
        align-items: top;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 5%;
    }
    .flexbox .box-scroll {
        width: 45%;
        height: 150px;
        opacity: 0;
        visibility: hidden;
        transition: all 1s;
    }
    .flexbox .box-scroll.is-show {
        width: 45%;
        height: 150px;
        margin-bottom: 10%;
        box-shadow: 0 8px 12px rgba(104, 104, 104, 0.3);
        opacity: 1;
        visibility: visible;
        border-radius: 1px;
    }
    .flexbox .box-scroll img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1px;
    }
    .flexbox-scroll:after {
        content: "";
        display: block;
        width: 45%;
        height: 0;
    }

    /* PROFILE */
    .profile {
        margin-top: 60px;
        display: block;
    }
    .profile .user {
        width: 80px;
        height: 80px;
        margin: 0 auto 10%;
        text-align: center;
    }
    .profile .user img {
        width: 100%;
        height: 100%;
        margin-right: 0;
        object-fit: cover;
        border-radius: 200px;
    }
    .profile .name{
        width: 100%;
        margin-bottom: 20px;
    }
    dl.text {
        overflow: hidden;
        zoom: 1;
    }
    dl {
        display: flex;
        flex-wrap: wrap;
    }
    dl dt {
        width: 20%;
        margin-bottom: 24px;
        margin-right: 5%;
        font-weight: bold;
        color: #868e93;
        font-size: 12px;
    }
    dl dd {
        width: 75%;
        margin-bottom: 24px;
        font-size: 12px;
        color: #868e93;
    }
    dl dd a {
        text-decoration: none;
    }
    dl dd img {
        width: 30px;
        height: 30px;
        margin: 0 5px;
        border-radius: 20px;
        box-shadow: 0 4px 8px rgba(104, 104, 104, 0.4);
    }
}