@charset "UTF-8";

body {
    margin: 0;
    line-height: 2em !important;
    letter-spacing: 0.13em !important;
    font-family: 'PT Sans', 'Noto Sans JP', sans-serif !important;
    color: #3E4550;
    background-color: #fcfcfc !important;
    overflow-x: hidden;
    text-align: center;
}

a {
    background-color: transparent;
    text-decoration: none !important;
    color: inherit;
}

ul, ol {
    margin: 0 !important;
    padding: 0;
    list-style: none;
}

header {
    width: 100%;
    height: 80px;
    position: fixed;
    background-color: rgb(252, 252, 252);
    z-index: 200;
}

@media screen and (max-width: 960px) {
    header {
        position: relative;
    }
}

header .header {
    display: flex;
    padding: 20px 45px;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 960px) {
    header .header {
        padding: 20px;
    }
}

header .header .logo img {
    width: 40px;
}

@media screen and (max-width: 960px) {
    .btn-gnavi {
        position: fixed;
        right: 20px;
        width: 30px;
        height: 15px;
        z-index: 3;
        box-sizing: border-box;
        -webkit-transition: all 400ms;
        transition: all 400ms;
    }

    .btn-gnavi span:nth-child(1) {
        top: 0;
    }

    .btn-gnavi.open span:nth-child(1) {
        top: 0px;
        left: 10px;
        transform: translateY(6px) rotate(-135deg);
        width: 80%;
    }

    .btn-gnavi span:nth-child(2) {
        top: 7px;
        width: 18px;
    }

    .btn-gnavi.open span:nth-child(2) {
        opacity: 0;
    }

    .btn-gnavi span:nth-child(3) {
        top: 14px;
    }

    .btn-gnavi.open span:nth-child(3) {
        top: 12px;
        left: 10px;
        transform: translateY(-6px) rotate(135deg);
        width: 80%;
    }

    .btn-gnavi span {
        position: absolute;
        width: 20px;
        height: 2px;
        background: #333333;
        -webkit-transition: all 400ms;
        transition: all 400ms;
    }
}

@media screen and (max-width: 960px) {
    nav {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 2;
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: opacity 0s linear 0s, -webkit-transform 0s linear 0s;
        transition: opacity 0s linear 0s, -webkit-transform 0s linear 0s;
        transition: opacity 0s linear 0s, transform 0s linear 0s;
        transition: opacity 0s linear 0s, transform 0s linear 0s, -webkit-transform 0s linear 0s;
        pointer-events: none;
    }

    nav.open {
        opacity: 1;
        transform: none;
        transition-delay: 0s, 0s;
        pointer-events: visible;
    }

    div.nav-bg.open {
        transform: none;
    }

    div.nav-bg {
        background-color: transparent;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
    }
}

@media screen and (max-width: 599px) {
    div.nav-bg::before {
        content: url(assets/img/icon/bg.svg);
    }
}

header nav ul {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 960px) {
    header nav.g-navi.open ul {
        opacity: 1;
        transition: 2s 0.3s;
    }

    header nav ul {
        flex-direction: column;
        font-size: 36px;
        font-weight: 600;
        margin-top: 100px !important;
        padding: 0;
    }
}

header nav ul li {
    margin-left: 40px;
    font-size: 13px;
    cursor: none;
}

@media screen and (max-width: 960px) {
    header nav ul li {
        display: block;
        z-index: 4;
        padding: 32px 0px;
        margin: auto;
    }
}

header nav ul li a {
    color: #212529;
}

@media screen and (max-width: 960px) {
    header nav ul li a {
        color: rgb(255, 255, 255);
    }
}

main.top {
    overflow: hidden;
    padding-bottom: 70px;
    width: 95%;
    padding: 0 2.5% 0;
    box-sizing: content-box;
}

section.mv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    max-width: 1440px;
    margin: 0 auto 120px auto;
}

@media screen and (max-width: 960px) {
    section.mv {
        flex-direction: column;
        align-items: flex-start;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
    }
}

div.mv_title {
    margin-left: 100px;
    z-index: 10;
}

@media screen and (max-width: 960px) {
    div.mv_title {
        position: absolute;
        top: 50px;
        margin: 0 10px;
    }
}

p.site_title {
    font-weight: bold;
    font-size: 48px;
    letter-spacing: 8px;
    line-height: 1.5em;
    text-align: left;
    width: 680px;
}

@media screen and (max-width: 960px) {
    p.site_title {
        font-size: 36px;
        letter-spacing: 3px;
        line-height: 1.4em;
    }
}

.sp {
    display: none;
}

@media screen and (max-width: 960px) {
    .sp {
        display: block;
    }
}

.typed_wrap p {
    text-align: left;
    width: 680px;
}

@media screen and (max-width: 960px) {
    .typed_wrap p {
        margin-top: 5px;
    }
}

div.mv_img {
    margin-left: -240px;
}

@media screen and (max-width: 960px) {
    div.mv_img {
        position: absolute;
        bottom: 10px;
        /* left: -120px; */
        margin: 0;
    }
}

div.mv_img img {
    width: 623px;
    padding-top: 100px;
}

@media screen and (max-width: 960px) {
    div.mv_img img {
        width: 100%;
    }
}

.scrolldown1 {
    position: absolute;
    left: 50px;
    bottom: 10px;
    height: 50px;
}

@media screen and (max-width: 960px) {
    div.scrolldown1 {
        left: 30px;
    }
}

.scrolldown1 span {
    position: absolute;
    left: -15px;
    top: -30px;
    color: #3E4550;
    font-size: 12px;
    letter-spacing: 0.05em;
    transform: rotate(90deg);
}

.scrolldown1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 30px;
    background: #3E4550;
    animation: pathmove 1.5s ease-in-out infinite;
    opacity: 0;
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }
    
    30% {
        height: 30px;
        opacity: 1;
    }
    
    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

section.about {
    margin: 0 auto 150px auto;
    height: 450px;
    max-width: 1440px;
}

@media screen and (max-width: 599px) {
    section.about {
        margin: 0 auto 100px auto;
        height: 500px;
    }
}

h1.left {
    position: absolute;
    z-index: 100;
}

@media screen and (max-width: 960px) {
    h1.left, h1.right {
        transform: scale(0.6);
    }
}

div.about_contents {
    float: right;
    margin: 100px 100px 0 0;
}

@media screen and (max-width: 960px) {
    div.about_contents {
        width: 80%;
        margin: 100px auto;
    }
}

div.about_lead {
    color: transparent;
    font-size: 72px;
    letter-spacing: 6px;
    line-height: 1.1em;
    text-align: left;
    -webkit-text-stroke: 1px #5d5d5d;
    text-stroke: 1px #5d5d5d;
    margin-bottom: 32px;
    position: relative;
}

@media screen and (max-width: 960px) {
    div.about_lead {
        font-size: 42px;
        letter-spacing: 4px;
        line-height: 1.1em;
        margin-bottom: 24px;
    }
}

div.about_desc {
    text-align: left;
}

@media screen and (max-width: 960px) {
    div.about_desc {
        font-size: 14px;
    }
}

div.about_more {
    text-align: right;
    font-size: 20px;
    margin-top: 24px;
    position: relative;
}

@media screen and (max-width: 960px) {
    div.about_more {
        font-size: 14px;
    }
}

div.about_more a {
    margin-right: 75px;
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

div.about_more a::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    content: '';
    width: 15%;
    height: 1px;
    background: #3E4550;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

@media screen and (max-width: 960px) {
    div.about_more a::after {
        right: 36px;
        bottom: 0px;
        width: 80px;
    }
}

section.works {
    position: relative;
    margin: 0 auto 50px auto;
    max-width: 1440px;
}

h1.works {
    font-family: PTSans-Bold, PT Sans;
    font-size: 42px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width: 960px) {
    h1.works {
        font-size: 30px;
    }
}

h1.works span {
    font-family: NotoSansCJKjp-DemiLight, Noto Sans CJK JP;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: 300;
    margin-left: 20px;
}

@media screen and (max-width: 960px) {
    h1.works span {
        font-size: 10px;
        margin-left: 10px;
    }
}

div.works_list {
    width: 85%;
    padding-top: 50px;
    margin: auto;
}

div.list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

@media screen and (max-width: 960px) {
    div.list {
        justify-content: space-around;
    }
}

div.list div.contents {
    width: 330px;
    margin-top: 50px;
}

/* @media screen and (max-width: 960px) {
    div.list div.contents {
        width: 280px;
    }
} */

div.list div.contents img {
    width: 100%;
}

div.contents p {
    margin-top: 10px;
    margin-bottom: 0;
    text-align: left;
}

div.contents p.small {
    font-size: 12px;
    color: #A3A3A3;
    margin-top: -5px;
}

div.contents ul {
    display: flex;
    padding: 0;
}

div.contents ul li {
    font-size: 12px;
    color: #A3A3A3;
}

div.contents ul li span {
    border-right: 1px solid #A3A3A3;
    padding-left: 10px;
    padding-right: 10px;
}

div.contents ul li:first-child span {
    padding-left: 0;
}

div.contents ul li:last-child span {
    border-right: none;
}

footer {
    color: rgb(62, 69, 80);
    width: 100%;
    background: rgb(240, 240, 240);
    padding: 0px 0px 10px;
}

div.footer_contents {
    width: 85%;
    display: flex;
    justify-content: space-between;
    margin: 0px auto;
    padding: 50px 0px;
}

@media screen and (max-width: 960px) {
    div.footer_contents {
        justify-content: center;
        padding: 30px 0 40px 0;
    }
}

div.footer_logo a {
    font-size: 20px;
    position: relative;
    color: #212529;
}

@media screen and (max-width: 960px) {
    div.footer_logo a {
        font-size: 14px;
        padding-left: 32px;
    }
}

div.footer_logo a::before {
    content: url(assets/img/common/logo.png);
    position: absolute;
    transform: scale(0.3);
    top: -75px;
    left: -112px;
}

@media screen and (max-width: 960px) {
    div.footer_logo a::before {
        transform: scale(0.2);
        top: -80px;
        left: -62px;
    }
}

ul.footer {
    display: flex;
}

@media screen and (max-width: 960px) {
    div.footer_nav {
        display: none;
    }
}

ul.footer li a {
    margin-left: 40px;
}

ul.footer li a {
    font-size: 16px;
    margin-bottom: 16px;
    color: #212529;
}

p.copyright {
    font-size: 12px;
    text-align: center;
}

@media screen and (max-width: 960px) {
    p.copyright {
        font-size: 10px;
    }
}

main.about {
    overflow: hidden;
    width: 80%;
    padding: 0 10% 0;
    box-sizing: content-box;
}

@media screen and (max-width: 960px) {
    main.about {
        width: 70%;
        padding: 0 15%;
    }
}

main.about div.profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0;
}

main.about section.profile {
    margin-top: 230px;
}

@media screen and (max-width: 960px) {
    main.about section.profile {
        margin-top: 80px;
    }
}

main.about h1 {
    font-size: 32px;
    letter-spacing: 0.15em;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 960px) {
    main.about h1 {
        font-size: 20px;
    }
}

main.about h1.profile::before {
    content: 'About';
    position: absolute;
    left: -180px;
    top: -120px;
    display: inline-block;
    color: transparent;
    font-size: 210px;
    letter-spacing: 0;
    line-height: 1em;
    text-align: left;
    -webkit-text-stroke: 1px #A7A7A7;
    text-stroke: 1px #A7A7A7;
    z-index: -1;
}

@media screen and (max-width: 960px) {
    main.about h1.profile::before {
        left: -90px;
        top: -40px;
        font-size: 86px;
        -webkit-text-stroke: 1px #d8d8d8;
        text-stroke: 1px #d8d8d8;
    }
}

main.about div.profile {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 80px 0;
}

@media screen and (max-width: 960px) {
    main.about div.profile {
        flex-direction: column;
        align-items: center;
        margin: 50px 0;
    }
}

main.about .profile_photo {
    width: 45%;
    text-align: center;
}

@media screen and (max-width: 960px) {
    main.about .profile_photo {
        width: 100%;
    }
}

main.about .profile_photo img {
    width: 300px;
    border-radius: 50%;
}

@media screen and (max-width: 960px) {
    main.about .profile_photo img {
        width: 60%;
    }
}

main.about .profile_desc {
    text-align: left;
    width: 45%;
}

@media screen and (max-width: 960px) {
    main.about .profile_desc {
        text-align: left;
        width: 100%;
        margin-top: 40px;
    }
}

main.about h2 {
    font-size: 20px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
    main.about h2 {
        text-align: center;
    }
}

@media screen and (max-width: 960px) {
    main.about p {
        font-size: 14px;
    }
}

section.skill {
    position: relative;
    margin-top: 220px;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background-image: linear-gradient(transparent 40%, #f8f8f8 0%);
}

@media screen and (max-width: 960px) {
    section.skill {
        margin-top: 120px;
        background-image: none;
    }
}

section.skill div.skill-inner {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

@media screen and (max-width: 960px) {
    section.skill div.skill-inner {
        flex-direction: column;
        margin: 60px 0;
    }
}

section.skill div.skill-contents {
    margin: 30px;
    padding: 0 20px;
    width: 330px;
}

@media screen and (max-width: 960px) {
    section.skill div.skill-contents {
        position: relative;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        background-image: linear-gradient(transparent 25%, #f8f8f8 0%);
        margin: 30px auto;
        padding: 0 15%;
    }
}

section.skill h2 {
    font-size: 20px;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 0;
}

@media screen and (max-width: 960px) {
    section.skill h2 {
        font-size: 18px;
    }
}

section.skill img.skill-img {
    padding: 30px;
}

section.skill p.skill_desc {
    min-height: 140px;
    text-align: left;
}

@media screen and (max-width: 960px) {
    section.skill p.skill_desc {
        min-height: auto;
    }
}

section.skill div.tool-inner {
    text-align: left;
    padding-bottom: 30px;
}

section.skill p.tool {
    padding: 5px 0;
    display: inline-block;
    background-image: linear-gradient(transparent 70%, #E5D668 0%);
    line-height: 0.8em;
}
