@charset "UTF-8";
html{
    font-size: 100%;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラノギ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    margin: 0px;
    overflow-y: scroll;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}

/*INDEX
--------------------------- */
.menu-index{
    text-align: center;
    text-shadow: 0 3px 3px rgb(94, 94, 94);
}
.menu-index p{
    font-size: 1.125rem;
    margin: 10px 0 0;
}
.page-title{
    font-size: 40px;
    font-family: 'Philosopher', serif;
    text-transform: uppercase;
    font-weight: normal;
}
.contents-title{
    margin-left: 100px;
    font-size: 20px;
    padding-left: 10px;
    border-left: 15px solid rgb(50, 139, 255);
    text-shadow: 0 1px 1px rgb(87, 87, 87);
}
.profile-list{
    margin-left: 150px;
}
.profile-caption{
    color: rgb(0, 0, 0);
    text-shadow: 0 3px 3px rgb(218, 218, 218);
    font-weight: bold;
    font-size: 25px;
}
.profile-text{
    font-size: 25px;
}
.profile-images{
    display: flex;
    flex-wrap: wrap;
}

.profile-item{
    width: 45%;
    margin: 50px auto;
    text-align: center;
    font-size: 24px;
}

.profile_image{
    border-radius: 10%;
}

.texttyping span{
    display: none;
}
.texttyping::after{
    content: "|";
    animation: typinganime .8s ease infinite;
}
@keyframes typinganime{
    from{opacity: 0}
    to{opacity: 1}
}

/*モバイル版
------------------------------------*/
@media screen and (max-width: 600px){
    .profile{
        margin-top: 200px;
    }
    .contents-title{
        margin-left: 30px;
    }
    .profile-list{
        margin-left: 60px;
    }
    .profile-block{
        display: inline-block;
    }
    .profile-image{
        width: 90%;
        margin: auto;
    }
    .profile_images{
        margin: 10px auto;
    }
}
