@charset "utf-8";

/* トップビュー */

.Top_MV {
    width: 100%;
}

#Section_Top {
   margin: 240px auto 160px ;
}

.Top_txt {
    font-family: Archivo;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 140%;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    padding-left: 300px;
    position: relative;
    max-width: 1440px;
}

.Top_txt::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 100px;
    border: solid 1px #3e3e3e;
    width: 160px;
    height: 1px;
}

/* トップビュー スマホサイズ */

@media screen and (max-width:960px) {

    #Section_Top {
        margin: 120px auto 80px ;
     }

    .Top_MV {
        margin-top: 100px;
    }

    .Top_txt {
        font-size: 2.5rem;
        margin: 0px auto 80px;
        padding-left: 70px;
    
    }
    
    .Top_txt::before {
        top: 15px;
        left: 0px;
        border: solid 1px #3e3e3e;
        width: 50px;
        height: 1px;
    }
}

/* メインコンテンツ */

.works_wrapper {
    max-width: 1088px;
    margin: 0 auto;
    padding-inline: 20px;
}

.works-01 {
    display: flex;
    align-items: center;
    margin-bottom: 160px;
    color: #000;
    text-decoration: none;
}

.works-02 {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 160px;
    color: #000;
    text-decoration: none;
}

.works-img img {
    display: block;
    width: 100%;
}

.work-01_txt {
    padding-left: 140px;
    padding-right: 20px;
    width: 545px;
}

.work-02_txt {
    padding-right: 130px;
    padding-left: 30px;
    width: 545px;
}

.description_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
}

.description_text h2 {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.8;
        letter-spacing: 5px;
        margin-bottom: 40px;
}

.works-btn {
    text-align: right;
    padding-top: 18px;
}

.works_p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 2.5px;
    margin-bottom: 30px;
}

.works-btn p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 2.5px;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: solid 0.8px #3e3e3e;
}

.works-btn {
    border-bottom: #3e3e3e;
}

.fadeUpTrigger {
    opacity: 0;
    transform: translateY(30px);
}

.fadeUp {
    opacity: 1;
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
    0% {
        opacity: 0;
        transform: translateY(30px); /* 下から上に移動 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 元の位置に */
    }
}

/* トップビュー スマホサイズ */

@media screen and (max-width:767px) {
    .works_wrapper {
        padding-inline: 20px;
        max-width: 550px;
    }

    .works-01 {
        flex-direction: column;
        margin-bottom: 60px;
        align-items: flex-start;
    }

    .work-01_txt {
        padding: 0 10px;
        align-items: normal;
        width: auto;
        text-align: left;
    }

    .works-02 {
        flex-direction: column;
        margin-bottom: 60px;
        align-items: flex-start;
    }

    .work-02_txt {
        padding: 0 10px;
        align-items: normal;
        width: auto;
        text-align: left;
    }

}

/* プロフィールへ */

.profile_txt {
    font-family: Archivo;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 140%;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    padding-left: 270px;
    position: relative;
    max-width: 1850px;
    margin: 0 auto 80px;
}

.profile_txt::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 80px;
    border: solid 1px #3e3e3e;
    width: 160px;
    height: 1px;
}

.profile_box {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 200px;
}

.profile_txtarea {
    width: 500px;
    padding-top: 30px;
}

.menu {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 5px;
    margin-bottom: 40px;
}

.menu_txt {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 2.5px;
    margin-bottom: 30px;
}

#profile a {
    text-decoration: none;
}

#profile img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.triangle_txt {
    color: #609F48;
    font-family: Montserrat;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 80%;
    display: inline;
    margin-right: 10px;
}

.triangle {
    display: inline;
    color: #609F48;
    font-size: 1.5rem;
    display: inline;
}

/* プロフィールへ スマホサイズ */

@media screen and (max-width:960px) {

.profile_txt {
    font-size: 2.5rem;
    margin: 0px auto 80px;
    padding-left: 70px;

}

.profile_txt::before {
    top: 15px;
    left: 0px;
    border: solid 1px #3e3e3e;
    width: 50px;
    height: 1px;
}

.profile_box {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
    margin-bottom: 100px;
}

.profile_txtarea {
    width: 80%;
    padding-top: 30px;
}

.menu {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.menu_txt {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 2.5px;
}

#profile img {
    width: 70%;
    height: auto;
    margin: 0 ;
}

.triangle_txt {
    font-size: 2rem;
}

.triangle {
    font-size: 2rem;
}