@charset "UTF-8";

html{
    font-size:100%;
}

body{
    color:#333333;
    font-size: 1rem;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

li{
    list-style:none;
}

.wrapper{
    max-width:1232px;
    padding:0 16px;
    margin:0 auto;
}

img{
    width:100%;
}

.sideber-innner{
    max-width:332px;
    margin:0 auto;
}

.header{
    width:100%;
    position: fixed;
    z-index:10;
    background-color: #fff;
}

.header .site-title{
    max-width:145px;
}

.header nav{
    background-color: #333333;
    padding:5px 0;
}

.header ul{
    display:flex;
    gap:60px;
}

.header a{
    text-decoration:none;
    color:#FFFFFF;
    font-size:0.875rem;
    line-height:calc(17 / 14);
}

.pickup{
    padding-top: 150px;
    margin-bottom:50px;
}

.pickup .article{
    display:flex;
    gap:15px;
    justify-content: space-between;
}
.pickup img{
    margin-bottom:5px;
}

.pickup p{
    font-weight:bold;
    line-height:calc(19 / 16);
    margin-bottom:5px;
}

.pickup .btn{
    text-align:center;
}

.pickup a{
    color:#333333;
    font-size:0.875rem;
    line-height:calc(17 / 14);
}

.pickup a:hover{
    text-decoration: none;
}

.main-content{
    display:flex;
    gap:40px;
    margin-bottom:150px;
}

main{
    width:60%;
}

.main-content .main-article1,
.main-article2{
    margin-bottom:50px;
}

.main-content h2{
    font-size:1.5em;
    line-height:calc(29 / 24);
    margin-bottom:15px;
}

.main-content span{
    display:inline-block;
    margin-right:10px;
    margin-bottom:10px;
    font-size:0.875rem;
    line-height:calc(17 / 14);
}

.main-content img{
    margin-bottom:10px;
}

.main-content .detail-content{
    max-width:667px;
    margin:0 auto;
}

.main-content p{
    margin-bottom:20px;
}

.main-content .btn{
    text-align:center;
}

.main-content a{
    color:#333333;
    font-size:0.875rem;
    line-height:calc(17 / 14);
}

.main-content a:hover{
    text-decoration: none;
}

.sub-main{
    width:40%;
}

.sub-main .author-image{
    max-width:130px;
    margin:0 auto;
}

.sub-main .author-image img{
    border-radius: 50%;
}

.sub-main h2{
    font-size:1.125rem;
    line-height:calc(22 / 18);
    text-align:center;
    margin-bottom:30px;
}

.sub-main p{
    font-size:0.875rem;
    line-height:calc(17 / 14);
}

/* .sub-main .author-content{
    max-width:332px;
    margin:0 auto;
} */

/* .sub-main .ranking{
    max-width:332px;
    margin:0 auto;
} */

.sub-main .ranking p{
    margin-bottom:30px;
}

.sub-main .archive h3{
    font-size:1.125rem;
    line-height:calc(22 / 18);
    text-align:center;
    margin-bottom:20px;
}

/* .sub-main .archive ul{
    max-width:332px;
    margin:0 auto;
} */

.sub-main .archive li{
    padding:15px 0;
    border-bottom:1px solid #777777;
}

.sub-main .archive li:first-child{
    border-top:1px solid #777777;
}

.sub-main .archive a{
    text-decoration:none;
}

.footer{
    background-color: #F7F7F7;
    padding:100px 0 10px 0;
}

.footer a{
    color:#333333;
    text-decoration:none;
}

.footer .footer-content{
    display:flex;
    gap:40px;
    margin-bottom:80px;
}

.footer h3{
    margin-bottom:30px;
}

.footer .about-content{
    margin-bottom:10px;
}

.footer .about{
    width:calc((100% - 80px) / 3 );
}

.footer .about li{
  position: relative;
  padding-left: 16px;
}

.footer .about li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #555;
}

.footer .menu{
    width:calc((100% - 80px) / 3 );
}

.footer .menu li{
    border-bottom:1px solid #777777;
    padding:15px 0;
}

.footer .menu li:first-child{
    border-top:1px solid #777777;
}

.footer .twitter{
    width:calc((100% - 80px) / 3 );
}

.footer .copy-right{
    font-size:0.75rem;
    line-height:calc(14 / 12);
    text-align:center;
}


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

.pickup .article{
    flex-direction:column;
}

.main-content{
    flex-direction:column;
}

main{
    width:100%;
}

.sub-main{
    width:100%;
}

/* .sub-main .author-content{
    max-width:none;
}

.sub-main .ranking{               共通化した部分
    max-width:none;
}

.sub-main .archive ul{
    max-width:none;
} */

.sub-main .sideber-innner{
    max-width:none;
}


.footer .footer-content{
    flex-direction: column;
}

.footer .about{
    width:100%;
}

.footer .menu{
    width:100%;
}

.footer .twitter{
    width:100%;
}


}