body{
    margin: 0;
}

main {
    width: 100%;
}

.page-fv img {
    width: 100%;
    height: auto;
}

/* profile */

.profile-container{
    align-items: center;
    margin-bottom: 80px;
}

.profile-container h2{
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}


/* story */
.story{
    width: 100%;
    background-color: #F8EB77;
}

.story-container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.story-ad-text{
    margin-bottom: 64px;
}

.story-ad-text p ,
.story-ad-text span{
    line-height: 180%;
    font-size: 1.6rem;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    letter-spacing: normal;
}

.story-ad-text p {
    font-weight: 400;
    margin-bottom: 5px;
}

.story-ad-text span{
    font-weight: 700;
}

.story-comic{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    row-gap: 48px;
}

.story-comic img{
    width: 100%;
    max-width: 593px;
    height: auto;
    object-fit: contain;
}

@media screen and (max-width: 575px) {
            .story-ad-text  p span{
            line-height: 170%;
        }

        .story-comic{
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .story-comic img{
            width: 100%;
            max-width: 593px;
            height: auto;
            object-fit: contain;
        }
}

/* strength */
.strength .section-title,
.skill .section-title{
    text-align: center;
}

.strength-list{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}


.strength-item{
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 0 auto;
}

.strength-item img{
    width: 55%;
    max-width: 414px;
    object-fit: contain;
}

.strength-text{
    width: calc(55% - 40px);
    height: 100%;
    max-width: 416px;
}

.strength-text h3{
    font-size: 3.2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
}

.strength-text p{
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 1.6rem;
}

@media screen and (max-width: 768px){
    .strength-item{
    flex-direction: column;
    gap: 24px;
    }
    
    .strength-item img{
    width: 100%;
    height: 100%;
    }

    .strength-text{
    width: 100%;
    max-width: 400px;
    min-width: 256px;
    }

    .strength-text h3 {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 575px) {
    .strength-text h3 {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }
}


/* SKILL */
.skill{
    width: 90%;
    margin: 0 auto;
}

.skill-list{
    display: flex;
    gap: 48px;
    margin: 0 auto;
    justify-content: center;
}

.skill-item{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 30%;
    max-width: 266px;
}

.skill-item h3{
    font-family: "Roboto", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    text-transform: capitalize;
}

.skill-item .uppercase {
    text-transform: uppercase;
}

.skill-item img{
    width: 100%;
    max-width: 264px;
    height: auto;
    object-fit: contain;
}

@media screen and (max-width: 575px) {
        .skill-list{
            flex-direction: column;
            gap: 64px;
            width: 100%;
            max-width: 265px;
        }
    
        .skill-item {
            width: 100%;
            gap: 2px;
        }
    
        .skill-item h3 {
            font-size: 2.4rem;
        }
    
        .skill-item img {
            width: 100%;
            min-width: 208px;
            height: 100%;
            object-fit: contain;
        }
}