@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Raleway);

body {
    font-family: "Raleway";
}

#wrap {
    width: 100%;
    height: 100%;
    position: fixed;

    background-size: cover;
    background-position: center center;
    background-image: url("../img/bg.jpg");
}

#header {
    width: fit-content;
    height: 500px;
    position: absolute;
    left: 50px;
    top: 300px;

    display: flex;
    flex-direction: column;
}

#header img {
    width: 200px;
}

#header span {
    display: block;
    letter-spacing: 5px;
    font-size: 9px;
    margin-top: 5px;
    margin-bottom: 20px;
}

#header p {
    letter-spacing: -1px;
    font-size: 32px;
    font-weight: 600;
}

#sns {
    width: 150px;
    height: 30px;
    position: absolute;
    right: 50px;
    top: 10px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sns > li > i {
    cursor: pointer;
    color: white;
}

#section {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: right;
}

#section .article {
    width: 12%;
    height: 100%;
    background-repeat: no-repeat;
    background-image: url("../img/divider.png");
    overflow: hidden;
    position: relative;
}

#section .article h2 {
    position: absolute;
    top: 50%;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    z-index: 6;
}

#section .article h2::before {
    content: " ";
    position: absolute;
    width: 3px;
    height: 18px;
    left: 11px;
    background-color: red;
}

#section .article h2.on {
    width: 100%;
    background-color: gray;
    opacity: 0.6;
}

#section .article video {
    width: auto;
    height: 100%;

    position: absolute;
    opacity: 0;
}

.article-contents {
    position: absolute;
    bottom: -150px;
    right: 0;

    width: 400px;
    height: 500px;
    z-index: 100;

    text-align: end;
    color: white;
    opacity: 0;
    right: -330px;
}

.article-contents h3 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}
