@charset "utf-8";

/* 
About
*/
.about {
    display: flex;
    justify-content: center; 
    margin: 0;
    align-items: center;
}

.about-caption {
    display: flex;
    vertical-align: middle;
}

.about-image {
    width: 500px;
    height: 650px;
    overflow: hidden;
    padding: 30px;
    margin-right: 30px;
}

.about-caption {
    display: inline-block;
    padding: 30px;
    height: auto;
    max-width: 600px;
}

.about-headerprofile {
    display: flex;
    justify-content: left;
    vertical-align: baseline;
}

.about-headerprofile  > h2 {
    margin: 0 50px 0 0;
    font-size: 32px;
}

.about-headerprofile > p {
    display: block;
    text-align: left;
    margin: 0;
    font-size: 13px;
}

.about-text {
    text-align: left;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .about {
        display: block;
        /* text-align: center; */
        margin-left: auto;
        margin-right: auto;
        width: 60%;    
    }

    .about-image {
        padding: 0;
        max-height: 500px;
        width: auto;
    }

    .about-caption {
        display: inline-block;
        margin-top: 30px;
        padding: 0;
        height: auto;
        max-width: 600px;
    }

    .about-headerprofile > p {
        font-size: 11px;
    }

    .about-headerprofile {
        display: block;
    }

    .about-headerprofile  > h2 {
        margin: 0;
        font-size: 28px;
        text-align: left;
    }

    .about-text {
        font-size: 14px;
    }
    
}

/* 
Skills
*/
/* 
grid
 */
 .grid {
    margin: 0;
    padding: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    list-style: none;   
}

.grid-column {
    display: block;
    text-align: center;
    padding: 0;
    margin: 40px 0;
    list-style: none;
}

.skills-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    max-width: 70%;
}

.skills-graph {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 220px;
    height: 220px;
    margin: 30px;
    border-radius: 50%;
    background: radial-gradient(#FDFDFD 55%, transparent 55%), conic-gradient(#FFE185 50%, #F5F5F5 50% 100%);
    font-weight: 600;
    box-shadow: 3px 3px 0 #bbb;
}

.skills-item {
    margin: 0;
}

.skills-level {
    margin: 0;
    font-weight: 400;
    font-size: small;
    letter-spacing: 0.1em;
}

    
.skills-description {
    display: flex;
    justify-content: center;
    margin: 24px 0 0 0;
}

.skills-levelTitle {
    margin: 0 3em 0 0;
}
    
.skills-levelText {
    text-align: left;
    margin: 0;
}

.skills-levelText > p {
    margin: 0;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .skills-graph {
        width: 160px;
        height: 160px;
    }
    
    .skills-item {
        font-size: 14px;
        /* max-width: 120px; */
    }

    .grid-column, .skills-list {
        /* width: 300px; */
        display: inline-block;
        margin: 0;
    }

    .skills-description {
        display: block;
        text-align: center;
        margin: 0;
    }

    .skills-levelTitle {
        margin: 10px 0;
    }

    .skills-levelText {
        display: inline-block;
        text-align: center;
        max-width: 300px;
    }

    .skills-levelText > p {
        font-size: 10px;
        /* display: block; */
        text-align: left;
    }
}

/* 
experience
*/
.experience {
    display: flex;
    justify-content: center ;
}

.experience-timeline {
    list-style: none;
    max-width: 70%;
}
/* .experience-timeline {
    list-style: none;
} */

.experience-items {
    display: flex;
    overflow: hidden;
    margin: 0;
    position: relative;
    text-align: left;
}

.experience-date {
    width: 20%;
    float: left;
    margin: 0;
    /* padding-top: 22px; */
    padding: 2em;
}

.experience-text {
    width: 80%;
    float: left;
    border-left: 1px #FFE185 solid;
    vertical-align: top;
    padding: 22px 70px;
    margin: 0;
}

/* 丸印 */
.experience-text::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #FFE185;
    position: absolute;
    left: 19.42%;
    top: 28px;
    border-radius: 50%;
}

.experience-text h4 {
    margin: 0;
}

.experience-text > p {
    margin: 2px 0 0 0;
}

@media screen and (max-width: 768px) {
    .experience-timeline {
        /* max-width: 80%; */
        max-width: 50vw;
        padding: 0;
    }

    .experience-items {
        display: flex;
        flex-flow: column;
        margin: 30px 0;
    }

    .experience-date {
        float: none;
        width: auto;
        margin: 0;
        padding: 0;
        border-bottom: 1px #FFE185 solid;
    }

    .experience-text {
        border-left: none;
        padding-left: 1.5em;
        padding-right: 0;
        vertical-align: top;
        width: 100%;
        font-size: 14px;
    }

    /* 丸印 */
    .experience-text::before {
        display: none;
    }
}

