#PROFILE {
    background-color: #fefefe;
    padding-bottom: 140px;
    width: 100vw;
    z-index: 999999;
    height: auto;
}

#PROFILE .titleSVG {
    margin-top: 20px;
}



.flex-container {
    display: flex;
    margin-bottom: 100px;
    align-items: center;
    justify-content: space-between;
}

.text-container {
    font-size: 13px;
    color: #513a05;
    line-height: 2em;
    width: 60%;
    /* 残りを文章エリアに */
}

/* 画像の配置 */
.image-container {
    width: 30%;
    height: auto;
    pointer-events: none;
    margin-bottom: 30px;
}

.image-container img {
    transition: all 0.5s ease-in-out;
    opacity: 1;
    width: 100%;
    height: auto;
    display: block;
}

.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.blurTrigger {
    opacity: 0;
}




.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.profile_item h3 {
    color: #A7A08C;
    margin: 30px 0 10px;
    font-size: 23px;
    font-family: "Cardo", serif;
    font-weight: 200;
    font-style: normal;
}


.manual-en p,
.manual-ja p {
    margin-bottom: 1em
}


@media (max-width: 1180px) {
    .text-container {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 2.3em;
        width:100%;
    }

    .image-container {
        width: 30%;
    }

    .flex-container {
        display: block;
    }

    #PROFILE {
        padding-bottom: 0px;
    }
}


@media (max-width: 768px) {
    .text-container {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 2.3em;
        width:100%;
    }

    .image-container {
        width: 50%;
    }

    .bgprofile {
        transform: translateX(-20px);
    }

    .flex-container {
        display: block;
    }

    #PROFILE {
        padding-bottom: 0px;
    }

    .profile_item h3 {
        font-size: 18px;
    }
}