@charset "utf-8";
/***********
1. Fonts
***********/

@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");

body {
    font-family: "Zen Maru Gothic", serif;
   
}

p {
    margin: 0;
}

table {
    display: flex;
    border-collapse: collapse; 
}

#title{
    text-align: center;
    letter-spacing: 3.2px;
  color: #000000;
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 0;
}

.subtitle {
    margin: auto;
    width:100px ;
    line-height: 1.85;
    border-bottom: 2px solid #c9bddd;
}

.subtitle > p {
    text-align: center;
}

tr td{
    vertical-align: top; 
    padding: 10px;  
}
#profile {
    align-items: center;
    background: linear-gradient(to bottom, transparent 0%, transparent 90%, #fff 100%), url(http://shiori-ozaki.com/portfolio/wp-content/uploads/2024/10/アートボード-1-一部切り取り.png);
    background-size: cover;


}

#profile-all {
    display:flex;

}

.profile-all {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateY(50px);

}

.profile-all.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#profile-all > div {
    margin: 30px 60px;
}

.shiori-picture {
    width: 40vw;
    margin:5px 5px;
    border-radius: 150px 0 150px 0; 
    margin-top: 30px;

}
@media screen and (max-width: 768px){
    #profile-all {
        display: inline-block;
    }

    .shiori-picture{
        width: 100%;
        margin:5px 5px;
        border-radius: 30% 0 30% 0; 
        margin-top: 30px;
    
    }
    
}

#profile-top > p {
    

}

.about-history {

}

#skil {
    text-align: center;
    justify-content: space-around;
    
}


#skils {
    display: flex;
}

.skils-i {
    align-content: center;
    margin: 5vw;
    padding: 10px 40px 50px 40px;
    width: 100%;
    border: solid 1px #fff;
    border-radius: 20px;
    box-shadow: 3px 5px 10px rgb(223, 221, 221);

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0,1.2,1.0,1.0);
}

.skils-i.ready{
    opacity: 1;
    transform: translateY(0px);
  }

.skils-i >p {
    text-align: left;
    margin: 16px;
}

@media screen and (max-width: 768px){
    #skils {
        display: block;
    }
    
    #skils > div {
        align-content: center;
        margin: 15px auto;
        padding: 10px 40px 50px 40px;
        width: 90%;
        border: solid 1px #fff;
        border-radius: 20px;
        box-shadow: 3px 5px 10px rgb(223, 221, 221);
    }
    
    #skils > div >p{
        text-align: left;
        margin: 10px;
        font-size: 16px;
    }
    

}

span {
    color: #c9bddd ;
}


.skil-img {
    
}