@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: "";
  height: 1px;
  width: 100%;
  background: #333;
  position: absolute;
  left: 0;
  bottom: 0;
  /*200ms(ミリ秒) = 0.2秒*/
  /*ease = 開始時と終了時にはゆっくり変化(初期値)*/
  /*後述のhoverとセット*/
  transition: all 200ms ease;
}

.readmore a:hover::after {
  /*hover時のafterの変化内容*/
  opacity: 0;
  /*translateY() Y軸(縦軸)への移動*/
  /*下に3px移動しながら下線を非表示にする*/
  transform: translateY(3px);
}

#header {
  width: 100%;
  background-color: #fff;
  /*固定する*/
  position: fixed;
  /*指定した値が大きい要素ほど上に表示される*/
  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 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;
  margin: 10px 0 15px 0;
}

#container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

main {
  width: 65%;
}

main article {
  margin-bottom: 80px;
}

main .article-title {
  font-size: 1.5rem;
  margin: 10px 0 15px 0;
}

main ul {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

main li {
  font-size: 0.875rem;
  margin-right: 20px;
}

main .text {
  padding: 10px 40px 30px 40px;
}

#sidebar {
  width: 35%;
  padding: 20px;
}

#sidebar .side-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 30px;
}

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

.author img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-bottom: 30px;
}

.author .profile {
  font-size: 0.875rem;
  text-align: left;
}

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

.ranking article {
  margin-bottom: 30px;
}

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

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

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

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

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

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

#footer .item {
  width: 30%;
}

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

/*ulのclassが.about-listなのでスペース無し*/
#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: "";
  /*三角形に使用するのはボーダーのみ*/
  /*ボックスの形状は必要無いのでheight,widthに「0」を指定*/
  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 .menu-list {
  border-bottom: solid 1px #777;
}

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

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

@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;
  }
}