@charset "UTF=8";

.firstView {
    width: 100%;
    height: 410px;
    background-color: var(--bg-secondty,#F6AD49);
    font-family: var(--font-title);
    letter-spacing: 0.03em;
    padding: 50px 5.8% 62px;
}

@media screen and (min-width: 769px) {
    .firstView {
        width: 100%;
        height: 700px;
        padding: 114px var(--padding-title140px);
    }
}

@media screen and (min-width: 1179px) {
    .firstView {
        height: 824px;
    }
}

.firstView__self {
    margin-top: 80px;
}

@media screen and (min-width: 769px) {
    .firstView__self {
        margin-top: 0;
    }
}
.firstView__hello p {
    font-size: 1.5rem;
    white-space: nowrap;
}
.firstView__hello {
    overflow: hidden;
    animation: hello 1.8s forwards linear ;
}

/* @keyframes hello {
    from {
       width: 0;
    }
    to {
        width: 100%;
    }
} */

@media screen and (min-width: 769px) {
    .firstView__hello p{
        font-size: 2.6rem;

    }

    /* .firstView__hello {
        height: 48px;
    } */
}

@media screen and (min-width: 1180px) {
    .firstView__hello p{
        font-size: 3.8rem;
    }
    /* .firstView__hello{
        height: 60px;
    } */
}

.firstView__nameBox {
    overflow: hidden;
} 

.firstView__nameBox p{
    height: 40px;
    font-size: 4rem;
    line-height: 100%; /* 40px */
}

.firstView__nameBox p{
    transform: translateX(100%);
    animation: name 0.5s linear 0.6s forwards 1;
}

@keyframes name {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@media screen and (min-width: 769px) {
    .firstView__name p{
        font-size: 8.8rem;
        height: auto;
    }
}

@media screen and (min-width: 1180px) {
    .firstView__name p{
        font-size: 12.8rem;
        height: 128px;
    }
}

.firstView__txtBox {
    width: 330px;
    margin: 0 auto;
}

@media screen and (min-width: 769px) {
    .firstView__txtBox {
        width: 700px;
    }
}

@media screen and (min-width: 1179px) {
    .firstView__txtBox {
        width: 100%;
        margin: 0 ;
    }
}

.firstView__greeting {
    width: auto;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 75px;
    position: relative;
    margin-left: 3%;
}

@media screen and (min-width: 769px) {
    .firstView__greeting {
        height: 90px;
        margin-top: 155px;
        margin-left: 5%;
    }
}

.firstView__greeting::after {
    content: '';
    background-image: url(../images/anime_top.gif);
    background-size: cover;
    width: 110px;
    height: 110px;
    mix-blend-mode: multiply;
    position: absolute;
    top: -85px;
    right: -23px;
    transform: rotate(7.295deg) ;
    opacity: 0;
    animation: gohst 0.5s linear 2.5s forwards ;
}

@keyframes gohst {
    0% {
        opacity: 0;

    }

    100% {
        opacity: 1;

    }

}

@media screen and (min-width: 769px) {
    .firstView__greeting::after {
        width: 200px;
        height: 200px;
        top: -172px;
        right: -48px;
    }
}

@media screen and (min-width: 1179px) {
    .firstView__greeting::after {
        width: 300px;
        height: 300px;
        top: -242px;
        right: -48px;
    }
}

.firstView__box {
    width: 140px;
}

@media screen and (min-width: 769px) {
    .firstView__box {
        width: 240px;
    }
}
@media screen and (min-width: 1179px) {
    .firstView__box {
        width: 340px;
    }
}

.firstView__welcome {
    flex-shrink: 0;
    width: 100%;
    animation: welcome 0.8s forwards 1.8s linear ;
    overflow: hidden;
    text-align: center;
}

.firstView__welcome p{
    width: 140px;
    font-size: 1.5rem;
    white-space: nowrap;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .firstView__welcome p{
        width: 240px;
        font-size: 2.6rem;
    }
}
@media screen and (min-width: 1180px) {
    .firstView__welcome p{
        width: 340px;
        font-size: 3.8rem;
    }
}


/* @keyframes welcome {
    from {
       width: 0;
    }
    to {
        width: 100%;
    }

} */

.firstView__site {
    flex-shrink: 0;
    width: 180px;
    overflow: hidden;
}

@keyframes site {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.firstView__site p{
    animation: site 0.5s linear 1.5s forwards ;
    white-space: nowrap;
    font-size: 2rem;
    margin-left: 10px;
    transform: translateY(100%);
}

@media screen and (min-width: 769px) {
    .firstView__site {
        width: 400px;
    }

    .firstView__site p{
        font-size: 4.5rem;
        margin-left: 27px;
    }
}
@media screen and (min-width: 1180px) {
    .firstView__site p{
        font-size: 6.4rem;
        margin-left: 27px;
    }
    .firstView__site {
        width: auto;
    }
}


.underLine {
    background-color: var(--text-primary);
    height: 50px;
    padding: 12px 0;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media screen and (min-width: 769px) {
    .underLine {
        background-color: var(--text-primary);
        height: 70px;
        padding: 14px 0;

    }
}

.underLine__text {
    display: flex;
    position: relative;
}

.underLine__text li{
    padding: 0;
    display: inline-block;
    color: #FFF;
    white-space: nowrap;
    letter-spacing: 0.1em;
    animation: underline 40s linear infinite;
    margin-left: 50px;
}

.underLine__text li:last-of-type {
    position: absolute;
    top: 0;
    left: 0;
    animation: underline 40s -20s linear infinite;
}





@keyframes underline {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media screen and (min-width: 769px) {
    .underLine__text {
        font-size: 2.6rem;
    }
}


/* 
belief
=========================================== */

.belief {
    padding: 60px 12% 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 769px) {
    .belief {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 148px var(--padding-title140px) 0px;
        gap: 30px;
    }
}

@media screen and (min-width: 1079px) {
    .belief {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        padding: 148px var(--padding-title140px)0;
        gap: 7%;
    }
}


.titleTxt--belief {
    width: 290px;
    font-size: 6.5rem;
    line-height: 1;
}

@media screen and (min-width: 769px) {
    .titleTxt--belief {
        width: 490px;
        font-size: 11rem;
        line-height: 1;
    }
}

.titleTxt--belief span {
    display: block;
}


@media screen and (min-width: 769px) {

}


.right {
    margin-left: 90px;
}


@media screen and (min-width: 769px) {
    .right {
        margin-left: 145px;
    }
}

.titleNote--belief {
    padding:10px 0;
    font-size: 1.4rem;
}


@media screen and (min-width: 769px) {
    .titleNote--belief {
        padding:20px 0;
        font-size: 2.4rem;
    }

}


.belief__content {
    margin-top: 30px;
}


@media screen and (min-width: 769px) {
    .belief__content {
        margin-top: 0;
    }
}


.belief__subText {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5; 
    text-align: center;
}


@media screen and (min-width: 769px) {
    .belief__subText {
        font-size: 3.6rem;
        font-weight: 500;
        line-height: 1.5; /* 54px */
        text-align: left;
        }
}


.belief__mainText {
    width: 290px;
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 13px;
}

@media screen and (min-width: 769px) {
    .belief__mainText {
        font-size: 1.6rem;
        width: 494px;
        line-height: 1.6;
    }
}





/* 
artwork
========================================= */


.artwork {
    margin-top: 120px;
}

.artwork__footer {
    margin-top: 30px;
}


/* 
about
======================================= */

.about {
    margin-top: 120px;
    padding-bottom: 60px;

}

.about__summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var( --padding-item17px);
}

.about__icon img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px  solid var(--text-primary);
    border-radius: 15px;
    margin-top: 60px;
}

.about__name {
    font-size: 3.2rem;
    margin-top: 30px;
}

.about__text {
    line-height: 1.6;
    margin-top: 30px;
}

@media screen and (min-width: 769px) {
    .about__text {
width: 500px;
    }
}

.btn--about {
    margin: 84px auto;
}



