@charset "UTF-8";

html{
  font-size: 100%;
}
body{
  color: #333;
  font-size: 1rem;
  font-family: "Noto Sans","Noto Sans JP",sans-serif;
}
a{
  color: #333;
  text-decoration: none;
}
img{
  max-width: 100%;
}
li{
  list-style: none;
}

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

.readmore{
  font-size: 0.875rem;
  text-align: center;
}

.readmore a {
  padding-bottom: 1px;
  color: #333;
  position: relative;
}

.readmore a::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #333;
  transition: all 200ms ease;
}

.readmore a:hover::after{
  opacity: 0;
  transform: translateY(3px);
}

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


#header .site-title{
  padding: 20px 16px;
  line-height: 1px;
}

#header .site-title a{
  display: inline-block;
}
  
.navi{
  background-color: #333;
}

.navi a{
  color: #fff;
}

.navi ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navi ul li {
 font-size: 0.875rem;
 padding: 10px 60px 10px 0;
}

#pickup{
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  margin-bottom: 60px;
}

#pickup article{
  width: 32%;
}

#pickup .article-title{
  font-size: 1rem;
  text-align: center;
}

#container{
  display: flex;

}

main {
  width: 65%;
  margin-right: 20px;
}

main article{
  margin-bottom: 30px;
}

main .main-title{
  font-size: 1.125rem;
}

main .meta{
  font-size: 0.875rem;
  display: flex;
}

main li{
  padding: 5px 20px 5px 0;
}

#sidebar{
  width: 33%;
  padding: 20px;
}
#sidebar .side-title{
  font-size: 1.125rem;
  margin-bottom: 30px;
}
.author{
  text-align: center;
  margin-bottom: 60px;
}

.author img{
  border-radius: 50%;
  width: 130px;
  height: 130px;
  margin-bottom: 30px;
}
.author .profile{
 font-size: 0.875rem;
 margin-bottom: 60px;
}

.ranking{
  text-align: center;
  margin-bottom: 60px;
}
.ranking article{
  margin-bottom: 30px;
}

.ranking .article-title{
  font-size: 0.875rem;
  text-align: left;
  font-weight: normal;
}

.archive{
  text-align: center;
  margin-bottom: 60px;
}

.archive ul{
  border-bottom: solid 1px #777;
  
}

.archive li{
  border-top: solid 1px #777;
  padding: 20px;
  text-align: left;
}

#footer{
  font-size: 0.875rem;
  background-color: #f7f7f7;
}

#footer .content{
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 50px;
}

#footer .item{
  width: 30%;
}

#footer .footer-title{
  font-size: 1.125rem;
  text-align: left;
  font-weight: bold;
  margin-bottom: 30px;
}

#footer ul.about-list{
  margin: 20px 0;
}
#footer ul.about-list li{
  margin-bottom: 5px;
}
#footer ul.about-list .arrow{
  position: relative;
  display: inline-block;
  padding-left: 12px;
  color: #333;
}
#footer ul.about-list .arrow::before{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}

#footer ul.menu-list{
  border-bottom: solid 1px #777;
}

#footer ul.menu-list li{
  border-top: solid 1px #777;
  padding: 15px;
  text-align: left;
}

#footer .copyright{
  text-align: center;
  padding: 10px 0;
  font-size: 0.750rem;
}


/*smart phonr*/
@media screen and (max-width:767px){
  #header .site-title{
    padding: 20px 16px;
  }
  .navi {
    overflow-x: scroll;
  }
  #pickup{
    flex-direction: column;
    padding-top: 140px;
  }
  #pickup article{
    width: 100%;
    margin-bottom: 30px;
  }
  #container{
    flex-direction: column;
  }
  main{
    width: 100%;
  }
  #sidebar{
    width: 100%;
    padding: 0;
  }
  #footer .content{
    flex-direction: column;
  }
  #footer .item{
    width: 100%;
    margin-bottom: 30px;
  }
}