main {
    margin: 80px 0;
}

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

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

/* PROFILE */
.profile {
    margin-top: 60px;
    display: flex;
}
.profile .user {
    width: 15%;
    margin-right: 10%;
}
.profile .user img {
    width: 120px;
    height: 120px;
    margin-right: 10%;
    border-radius: 200px;
    object-fit: cover;
}
.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: 30px;
    font-weight: bold;
    color: #868e93;
    font-size: 14px;
}
dl dd {
    width: 80%;
    margin-bottom: 30px;
    color: #868e93;
    font-size: 14px;
}
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);
}