@charset "utf-8";

/* -------------------------------------------------------
デフォルトのスタイルを打ち消す
------------------------------------------------------- */
*,::after,::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* 計算しやすいよう、文字サイズをデフォルトの16pxの62.5%=10pxに設定 */
  font-size: 62.5%;
}

a {
  text-decoration: none;
  color: #343434;
}

ul {
  list-style: none;
}


/* -------------------------------------------------------
共通
------------------------------------------------------- */
body {
  color: #343434;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  background-color: #fff;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

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

.read-more {
  text-align: center;
}

.read-more a {
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 1px;
}

.read-more a::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #343434;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease;
}

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


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

.header-logo {
  line-height: 1;
  margin: 20px auto 13px auto;
}

.header-logo a {
  display: inline-block;
}

#header nav {
  background-color: #343434;
  padding: 10px 0;
}

.site-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.site-menu li {
  margin-right: 60px;
}

.site-menu a {
  color: #fff;
  font-size: 1.4rem;
}


/* -------------------------------------------------------
pick-up
------------------------------------------------------- */
#pick-up {
  padding-top: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

#pick-up article {
  width: 32%;
}

#pick-up .article-title {
  font-size: 1.6rem;
  margin: 15px 0;
}


/* -------------------------------------------------------
main
------------------------------------------------------- */
#container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

main {
  width: 65%;
}

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

.meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.meta li {
  font-size: 1.4rem;
  margin-right: 20px;
}

main p {
  font-size: 1.6rem;
  padding: 15px 40px 30px 40px;
}

main article {
  margin-bottom: 80px;
}

main article:last-of-type {
  margin-bottom: 0;
}


/* -------------------------------------------------------
aside
------------------------------------------------------- */
aside {
  width: 33%;
  padding: 20px;
}

.side-title {
  font-size: 1.8rem;
  padding: 35px 0 30px 0;
  text-align: center;
}


/* -------------------------
profile
------------------------- */
.profile {
  text-align: center;
}

.profile img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

.profile p {
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 25px;
}


/* -------------------------
ranking
------------------------- */
.ranking .article-title {
  font-size: 1.4rem;
  font-weight: normal;
  padding: 5px 0 30px 0;
}

.ranking article:last-of-type .article-title {
  padding-bottom: 0;
  margin-bottom: 25px;
}


/* -------------------------
archive
------------------------- */
.archive li {
  font-size: 1.4rem;
  border-top: solid 1px #343434;
  padding: 20px;
}

.archive li:last-of-type {
  border-bottom: solid 1px #343434;
}


/* -------------------------------------------------------
footer
------------------------------------------------------- */
#footer {
  background-color: #f7f7f7;
  padding: 50px 0 10px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-inner section {
  width: 30%;
}

#footer .section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
}


/* -------------------------
about
------------------------- */
.about {
  font-size: 1.4rem;
}

.about ul {
  margin-top: 20px;
}

.about li {
  margin-bottom: 5px;
}

.about a {
  position: relative;
  padding-left: 12px;
}

.about a::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #343434;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}


/* -------------------------
menu
------------------------- */
.menu li {
  font-size: 1.4rem;
  border-top: solid 1px #343434;
  padding: 15px;
}

.menu li:last-of-type {
  border-bottom: solid 1px #343434;
}


.copyright {
  text-align: center;
  font-size: 1.2rem;
}


/* -------------------------------------------------------
mobile用
------------------------------------------------------- */
@media (max-width: 767px) {
  /* -------------------------
  header
  ------------------------- */
  .site-menu {
    overflow-x: scroll;
  }


  /* -------------------------
  pick-up
  ------------------------- */
  #pick-up {
    flex-direction: column;
    padding-top: 130px;
  }

  #pick-up article {
    width: 100%;
    margin-bottom: 30px;
  }


  /* -------------------------
  main
  ------------------------- */
  #container {
    flex-direction: column;
  }

  main {
    width: 100%;
  }


  /* -------------------------
  aside
  ------------------------- */
  aside {
    width: 100%;
    padding: 80px 0 0 0;
  }


  /* -------------------------
  footer
  ------------------------- */
  .footer-inner {
    flex-direction: column;
    margin-bottom: 90px;
  }

  .footer-inner section {
    width: 100%;
  }

  .menu {
    margin-top: 45px;
  }

  .twitter {
    margin-top: 30px;
  }
}