@charset "utf-8";

/* CSS Setting
---------------------------------------------------------------------------*/
:root {
    --root-font-size: 16;
}

html,
body {
    height: 100%;
    background: #fff;
    overflow-x: hidden;
}

body {
    font-family: 'neue-haas-unica', 'Gothic Medium BBB', '中ゴシックBBB', 'YuGothic', '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    margin: 0;
    padding: 0;
    border: 0;
}


p {
    font-size: calc(13 / var(--root-font-size) * 1rem);
    line-height: 2.0em;
    letter-spacing: 0.1em;
    text-align: justify;
}


.bold {
    font-family: 'neue-haas-unica', sans-serif;
    font-weight: 600;
}


img {
    border: 0;
}


br {
    letter-spacing: 0;
}

a:link {
    text-decoration: none;
    outline: none;
    color: #000;
}

a:visited {
    color: #000;
}

a:hover {
    color: rgba(51, 51, 51, 0.3);
}

a:active {
    color: rgba(51, 51, 51, 0.3);
}

::selection {
    color: rgba(51, 51, 51, 0.3);
}


/* Display None
---------------------------------------------------------------------------*/
.pc_none {
    display: none;
}


@media screen and (max-width: 768px) {

    .pc_none {
        display: block;
    }

    .sp_none {
        display: none;
    }

}


/* Wrapper
---------------------------------------------------------------------------*/
#wrapper {
    width: 70vw;
    max-width: 1080px;
    position: relative;
    padding: 0 0 0 30px;
}

@media screen and (max-width: 768px) {
    #wrapper {
        width: 100vw;
        padding: 0;
    }
}


/* Profile
---------------------------------------------------------------------------*/
.profile {
    position: relative;
    width: 100%;
    height: auto;
    margin: 50px 0 80px 0;
}


.profile .stars {
    position: absolute;
    background-image: url("../images/stars.svg");
    background-repeat: no-repeat;
    text-indent: -9999px;
    display: block;
    width: 70px;
    height: 17px;
    top: 5px;
    right: 0;
}


@media screen and (max-width: 768px) {

    .profile p {
        margin: 30px 15px 0 15px;
    }

    .profile .stars {
        position: relative;
        width: 70px;
        height: 17px;
        top: 0;
        left: 15px;
    }

}


/* Works
---------------------------------------------------------------------------*/
.works {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 0px;
}

.works img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 1754px;
    margin-bottom: 30px;
}

.works p {
    margin: -15px 0 80px 0;
}


@media screen and (max-width: 768px) {

    .works img {
        margin-bottom: 10px;
    }

    .works p {
        margin: 5px 15px 80px 15px;
    }
}