@charset "UTF-8";
/* 共通設定 -------------------------------- */
h2 .en{
    font-family: 'Zen Old Mincho', sans-serif;
    font-weight: 700;
    font-size: 128px;
    letter-spacing: -0.1em;
    display: block;
}
h2 .ja{
    font-family: 'Zen Old Mincho', sans-serif;
    font-weight: 600;
    font-size: 32px;
    writing-mode: vertical-rl;
    display: block;
}


/* mv ------------------------------------- */
.mv{
    background-color: #F4F1E6;
    padding: 200px 0 60px;
}

.mv .mv-title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 150px;
}
.mv .mv-title .img{
    max-width: 180px;
}
.mv .mv-title .text{
    color: #000;
    margin-top: -50px;
    text-align: center;
}
.mv .mv-title .text .main-title{
    font-family: 'Zen Old Mincho', sans-serif;
    font-weight: 700;
    font-size: 128px;
    letter-spacing: -0.1em;
}
.mv .mv-title .text .main-title > span{
    font-size: 96px;
}
.mv .mv-title .text .description{
    font-size: 14px;
    line-height: 1.5;
    margin-top: -20px;
}

.mv .scroll-more{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mv .scroll-more .text{
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
    animation: bounce 1.2s infinite ease-in-out;
}
@keyframes bounce{
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
}
.mv .scroll-more .img{
    max-width: 30px;
    margin-bottom: 20px;
    animation: bounce 1.2s infinite ease-in-out;
}
.mv .scroll-more .vertical-line-container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    margin-bottom: 20px;
}
.mv .scroll-more .vertical-line-container .vertical-line{
    width: 1px;
    height: 100%;
    background-color: #000;
}


/* works ---------------------------------- */
#works{
    width: 100%;
    background-color: #C4C3B7;
}
#works .wrapper{
    position: relative;
}
#works h2 .en{
    color: #F4F1E6;
    line-height: 1;
    position: absolute;
    top: -28px;
    left: 0;
    z-index: 10;
}
#works h2 .ja{
    color: #000;
    position: absolute;
    top: 38px;
    left: 12px;
    z-index: 11;
}

#works .text-container{
    max-width: 65%;
    padding-top: 150px;
    margin-left: auto;
    margin-bottom: 60px;
}
#works .text-container p{
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

#works .text-container .btn-container{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}
#works .text-container .btn-container .line{
    width: 100px;
    height: 1px;
    background-color: #C4832D;
    margin-right: 10px;
    position: relative;
}
#works .text-container .btn-container .line::after{
    content: "";
    width: 8px;
    height: 1px;
    background-color: #C4832D;
    position: absolute;
    top: -3px;
    right: 0;
    transform: rotate(35deg);
}

#works .text-container .btn-container a{
    width: 100%;
    max-width: 180px;
    color: #F4F1E6;
    background-color: #C4832D;
    border: 1px solid #C4832D;
    border-radius: 30px;
    display: block;
    padding: 8px 30px;
    text-align: center;
}
#works .text-container .btn-container a:hover{
    color: #C4832D;
    background-color: #F4F1E6;
    border: 1px solid #C4832D;
}

#works .img-area{
    display: flex;
    padding-bottom: 100px;
    overflow-x: hidden;
}
#works .img-area .work-list{
    display: flex;
    animation: slide-left 60s infinite linear both;
}
#works .img-area .work-list li{
    width: calc(100vw / 3);
}
#works .img-area .work-list li img{
    width: 100%;
}
@keyframes slide-left{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}

/* SKILLS --------------------------------- */
#skills{
    width: 100%;
    background-color: #F4F1E6;
    margin-bottom: 100px;
}
#skills .wrapper{
    position: relative;
}
#skills h2 .en{
    color: #C4C3B7;
    line-height: 1;
    position: absolute;
    top: -28px;
    right: 0;
    z-index: 10;
}
#skills h2 .ja{
    color: #000;
    position: absolute;
    top: 38px;
    right: 12px;
    z-index: 11;
}
#skills .space{
    width: 100%;
    height: 270px;
}

#skills .dl-container{
    width: 75%;
    background-color: #fff;
    border-radius: 0 30px 30px 0;
    padding: 40px 5% 40px 10%;
    margin-top: -100px;
}
#skills .dl-container .ican-list-item{
    display: flex;
    align-items: start;
    margin-bottom: 40px;
}
#skills .dl-container .ican-list-item:last-of-type{
    margin-bottom: 0;
}
#skills .dl-container .ican-list-item dt{
    width: 100px;
    text-align: right;
    flex-shrink: 0;
    position: relative;
    margin-right: 70px;
}
#skills .dl-container .ican-list-item dt::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 12px;
    right: -60px;
}
#skills .dl-container .ican-list-item p{
    line-height: 1.8;
    margin-bottom: 20px;
}
#skills .dl-container .ican-list-item dd p:last-of-type{
    margin-bottom: 0;
}
#skills .dl-container .ican-list-item p > a{
    text-decoration: underline;
    text-underline-offset: 4px;
    padding-bottom: 3px;
}
#skills .dl-container .ican-list-item .list-title{
    font-weight: 600;
}

/* ABOUT ---------------------------------- */
#about{
    width: 100%;
    background-color: #C4C3B7;
}
#about .wrapper{
    position: relative;
}
#about h2 .en{
    color: #F4F1E6;
    line-height: 1;
    position: absolute;
    top: -28px;
    left: 0;
    z-index: 10;
}
#about h2 .ja{
    color: #000;
    position: absolute;
    top: 38px;
    left: 12px;
    z-index: 11;
}

#about .info-container{
    max-width: 70%;
    display: flex;
    justify-content: flex-end;
    padding-top: 150px;
    padding-bottom: 100px;
    margin-left: auto;
}

#about .info-container .img{
    width: 170px;
    height: 250px;
    flex-shrink: 0;
}
#about .info-container .img img{
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 90px;
    background-color: #F4F1E6;
}

#about .info-container .text{
    margin-left: 20px;
}
#about .info-container .text p{
    line-height: 1.8;
    margin-bottom: 20px;
}
#about .info-container .text p:last-child{
    margin-bottom: 0;
}
#about .info-container .text .name .en{
    display: block;
    color: #C4832D;
    font-family: 'Zen Old Mincho', sans-serif;
    font-size: 12px;    
}
#about .info-container .text .name .ja{
    display: block;
    font-weight: 600;
    font-size: 24px;
    font-family: 'Zen Old Mincho', sans-serif;
    line-height: 1;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}

/* LINKS ---------------------------------- */
.links{
    width: 100%;
    background-color: #9EA19B;
    display: flex;
    justify-content: space-between;
}
.links li{
    width: 50%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #000;
}
.links li:first-child{
    border-right: 1px solid #000;
}
.links li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.links li a .title{
    font-family: 'Zen Old Mincho', sans-serif;
    position: relative;
}
.links li a .title::before{
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(../img/common/arrow.svg);
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: -50px;
}
.links li a:hover {
    opacity: 0.5;
}
.links li a:hover .title .en{
    color: #F4F1E6;
}
.links li a:hover .hover-line::after {
    transform: scale(1, 1);
}

.links li a .title .ja{
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}
.links li a .title .en{
    display: block;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.1em;
    line-height: 1;
}


/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /* 共通設定 -------------------------------- */
    h2 .en{
        font-size: 96px;
    }
    h2 .ja{
        /* font-size: 32px; */
        writing-mode: horizontal-tb;
    }

    /* mv ------------------------------------- */
    .mv{
        padding: 80px 0 40px;
    }

    .mv .mv-title{
        flex-direction: column-reverse;
        margin-bottom: 100px;
    }
    .mv .mv-title .text .main-title{
        font-size: 88px;
    }
    .mv .mv-title .text .main-title > span{
        font-size: 72px;
    }

    /* works ---------------------------------- */
    #works h2 .en{
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    #works h2 .ja{
        top: 48px;
        left: 50%;
        transform: translateX(-50%);
    }

    #works .text-container{
        max-width: 100%;
        padding-top: 140px;
        margin: 0 auto 60px;
    }

    #works .img-area .work-list li{
        width: calc(100vw / 1);
    }

    /* SKILLS --------------------------------- */
    #skills h2{
        width: 100%;
        position: relative;
    }
    #skills h2 .en {
        position: absolute;
        top: -20px;
        right: 0;
        left: 0;
        margin: 0 auto;
        text-align: center;
        z-index: 1;
        white-space: nowrap;
    }
    #skills h2 .ja {
        position: absolute;
        top: 48px;
        right: 0;
        left: 0;
        margin: 0 auto;
        text-align: center;
        z-index: 2;
        white-space: nowrap;
    }
    #skills .space{
        width: 100%;
        height: 10px;
    }

    #skills .dl-container{
        width: 95%;
        border-radius: 0 30px 30px 0;
        padding: 40px 5%;
        margin-top: 140px;
    }
    #skills .dl-container .ican-list-item dt{
        width: 20px;
        writing-mode: vertical-lr;
        text-align: right;
        flex-shrink: 0;
        position: static;
        margin-right: 10px;
    }
    #skills .dl-container .ican-list-item dt::after{
        content: none;
    }
    #skills .dl-container .ican-list-item dd{
        border-left: 1px solid #000;
        padding-left: 10px;
    }

    /* ABOUT ---------------------------------- */
    #about h2 .en{
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    #about h2 .ja{
        top: 48px;
        left: 50%;
        transform: translateX(-50%);
    }

    #about .info-container{
        max-width: 100%;
        justify-content: center;
        flex-direction: column;
        padding-top: 140px;
        margin: 0 auto;
    }

    #about .info-container .img{
        width: 170px;
        height: 250px;
        flex-shrink: 0;
        margin: 0 auto 10px;
    }

    #about .info-container .text{
        margin-left: 0;
    }

    /* LINKS ---------------------------------- */
    .links{
        flex-direction: column;
    }
    .links li{
        width: 100%;
        height: 200px;
    }
    .links li:first-child{
        border-right: 0;
    }
    .links li a .title::before{
        width: 20px;
        height: 20px;
        right: -25px;
    }
    .links li a .title .en{
        font-size: 36px;
    }

}