html{
    font-family: Noto Sans JP
}


html a{
    text-decoration: none;
    color: black;
}

html li{
    list-style: none;
}

.section__title{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.center{
    text-align: center;
    font-size: 12px;
}

/* header */

.header{
    width: 100%;
}

.header-top{
    position: fixed;
    background-color: #fff;
    top: 0;
}


.header__wrapper{
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
    background-color: #fff;
}



.header__nav{
    background-color: #333333;
}

.header__nav-list{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.header__nav-list li{
    font-size: 14px;

    padding: 10px 60px 10px 0;
}

.header__nav-list a{
    color: #fff;
}


.readmore{
    margin-top: 30px;
    text-align: center;
}

.readmore a{
    border-bottom: solid 1px;
    font-size: 14px;
    justify-content: center;

}

.readmore a:hover {
    border-bottom: 0;
}

.blog__archive{
    margin-top: 60px;
}


/* pickup */

.pickup{
    max-width: 1200px;
    margin: 0 auto;
}

.pickup__wrapper ul{
    display: flex;
    gap: 23px;
    margin-top: 44px;
}

.pickup__wrapper li{
    max-width: 33%;
}

.pickup__wrapper img{
    max-width: 100%;
}





/* blog */

.blog{
    max-width: 1200px;
    margin: 0 auto;
}

.__left{
    max-width: 62%;
}

.__right{
    max-width: 28%;
}


.blog__wrapper img{
    max-width: 100%;
}

.blog__text{
    max-width: 90%;
    margin: 0 auto;
}

.blog__content{
    margin: 80px 0;
}

.blog__content-info{
    display: flex;
    gap: 20px;
    margin: 15px 0 10px 0;
}

.blog__profile img{
    max-width: 37%;
    border-radius: 62px;
}

.blog__profile{
    margin-top: 80px;
}

.blog__profile .section__title{
    margin-top: 30px;
}

.profile__img{
    text-align: center;
}

.blog__wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 140px;
}

.blog__ranking{
    margin-top: 60px;
}


.ranking__content{
    font-size: 14px;
    margin-bottom: 30px;
}

.blog__archive-list{
    border-bottom: 1px solid;
}

.blog__archive-list li{
    border-top: 1px solid;
    padding: 20px 0 20px 20px;
}








/* footer */


.footer__title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.footer__wrapper{
    background-color: #f7f7f7;
    height: 508px;
}

.footer__inner{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer__about{
    width: 29%;
    margin-top: 50px;
}

.footer__about span{
    display: block;
    margin-bottom: 20px;
}

.footer__about li{
    margin-top: 5px;
}


.footer__menu{
    width: 29%;
    margin-top: 50px;
}

.footer__menu ul{
    border-bottom: 1px solid #777777;
}

.footer__menu li{
    border-top: 1px solid #777777;
    padding: 15px 0 15px 15px;
}

.footer__sns{
    width: 29%;
    margin-top: 50px;
}






@media screen and (max-width: 968px) {

    h2{
        font-size: 24px;
    }
    .header__wrapper{
        padding-left: 16px;
    }
    .header__nav-list{
        overflow-x: scroll;
    padding-left: 12px;
    }

    .pickup__wrapper{
        max-width: 95%;
        margin: 0 auto;
    }

    .pickup__wrapper ul{
        flex-direction: column;
    }

    .pickup__wrapper li{
        max-width: 100%;
    }

    .blog__wrapper{
        max-width: 95%;
        margin: 0 auto;
        flex-direction: column;
    }

    .__left,.__right{
        max-width: 100%;
    }

    .footer__wrapper{
        height: auto;
    }

    .footer__inner{
    max-width: 95%;
    margin: 0 auto;
    flex-direction: column;
    }

    .footer__about{
        width: 100%;
    }

    .footer__menu{
        width: 100%;
    }

    .footer__sns{
        width: 100%;
    }
}