@charset "UTF-8";

/* ----------
works個別ページ共通
------------- */
.worksTitle {
    font-family: Roboto;
    font-size: 9rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: var(--baseColor);
    margin-top: 100px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--textColor);
}

.heartLine__box {
    margin-top: -80px;
}

#svganimation01 {
    opacity: 0;
}

#svganimation01.start-animation01 {
    opacity: 1;
}

.banner__mockup {
    filter: blur(17px);
    opacity: 0;
    animation: mockup__anime 0.7s ease-in 0s normal forwards;
}

@keyframes mockup__anime {
    0% {
        filter: blur(17px);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

@media screen and (max-width:768px) {
    .worksTitle {
        font-size: 6.8rem;
    } 

    .heartLine__box {
        margin-top: -20px;
    }
}

@media screen and (max-width: 425px) {
    .worksTitle {
        margin-top: 80px;
    }

    .heartLine__box {
        margin-top: 0;
    }
}

/* ==========
zero
============= */
.banner__all--area {
    max-width: 940px;
    margin: 100px auto;
    display: flex;
    gap: 7%;
    justify-content: space-between;
}

.banner__main--area {
    width: 100%;
}

.banner__main--title {
    display: flex;
    gap: 10px;
    align-items: center;
}

.banner__main--kinds {
    width: 65px;
    height: 28px;
    padding: 0 5px;
    background-color: var(--textColor);
}

.banner__main--kinds p {
    height: 28px;
    line-height: 28px;
    font-family: Roboto;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--baseColor);
    text-align: center;
}

.banner__main--detail {
    font-size: 3.2rem;
    font-weight: 600;
}

.bannerInfo {
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .banner__all--area {
        max-width: 90%;
        margin: 100px auto;
    }

    .banner__main--kinds p {
        font-size: 1.3rem;
    }

    .banner__main--detail {
        font-size: 1.8rem;
    }

    .bannerInfo {
        margin-top: 4px;
        font-size: 1.4rem;
        line-height: 2;
    }
}

@media screen and (max-width:425px) {
    .banner__all--area {
        margin: 50px auto;
        flex-direction: column;
    }

    .banner__txt--area {
        margin-top: 25px;
    }

    .bannerInfo {
        font-size: 1.5rem;
    }
}

/* メインエリア ラインアニメーション */
.main__area--span {
    display: inline-block;
    width: 0%;
    height: 1px;
    background-color: var(--textColor);
    margin-top: 20px;
    transition: 1.5s;
}

.main__area--span.works__line {
    width: 100%;
}

.banner__subArea {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
}

.banner__subArea--title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2;
    width: 150px;
}

.banner__subArea--txt {
    width: 100%;
    font-size: 1.5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .banner__subArea--title {
        font-size: 1.5rem;
    }
    
    .banner__subArea--txt {
        font-size: 1.4rem;
    }
}

@media screen and (max-width:425px) {
    .banner__subArea {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 8px;
    }
    .banner__subArea--title {
        font-size: 1.6rem;
    }

    .main__area--span {
        margin-top: 8px;
    }
    .banner__subArea--txt {
        font-size: 1.5rem;
    }
}


/* sample */
.banner__sampleImg {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6.9%;
    padding: 100px 0;
    background-color: var(--baseColor);
    animation: sampleBgc ease forwards;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
}

@keyframes sampleBgc {
    0% {background-color: var(--baseColor);}
    40% {background-color: var(--subBaseColor);}
    100% {background-color: var(--subBaseColor);}
}

.sample__banner {
    max-width: 500px;
}

.sample__banner img {
    box-shadow: 5px 5px 7px 3px rgba(120, 120, 120, 0.3);
}

@media screen and (max-width:768px) {
    .sample__banner {
        max-width: 58%;
    }

}

@media screen and (max-width:425px) {
    .sample__banner {
        max-width: 80%;
    }
} 

/*========== 
other works
============ */
.otherWorks {
    padding: 100px 0;
}

.otherWorks__title {
    font-family: Roboto;
    font-size: 4.8rem;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width:425px) {
    .otherWorks {
        padding: 40px 0;
    }
}














