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

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

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

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

.read-more a:hover::after {
  opacity: 0;
  transform-origin: center center;
  transform: rotate(10deg);
}

.read-more a::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  top: calc(0.875rem + 4.937px);
  left: 0;
  transition: all 200ms ease;
}

.read-more a:hover::before {
  opacity: 0;
  transform-origin: center center;
  transform: rotate(-10deg);
}

/* header */

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

.site-title {
  padding: 13.25px 16px;
  /* line-height: 1px; */
}

.site-title a {
  display: inline-block;
}

.nav {
  background-color: rgb(66, 199, 252);
}

.nav a {
  color: #fff;
}

.nav-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

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

/* pickup */

.pickup {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  margin-bottom: 30px;
  overflow: scroll;
}

.pickup article {
  width: 32%;
  flex-shrink: 0;
  margin-right: 2%;
  padding-bottom: 30px;
}

.pickup article:first-child {
  margin-left: 3%;
}

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

/* container */

.container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}

.main {
  width: 65%;
}

.main article {
  margin-bottom: 80px;
}

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

.meta {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

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

.text {
  padding: 0 40px;
}

/* aside */

.aside {
  width: 33%;
  padding: 20px;
  overflow: hidden;
}

.side-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: rgb(66, 199, 252);
}

.aside section {
  margin-bottom: 60px;
}

.author {
  text-align: center;
}

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

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

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

.archive {
  margin-bottom: 60px;
}

.archive-list {
  border-bottom: 1px solid rgb(66, 199, 252);
}

.archive-list li {
  font-size: 00.875rem;
  border-top: 1px solid rgb(66, 199, 252);
  padding: 20px;
}

/* footer */

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

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

.item {
  width: 30%;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: rgb(66, 199, 252);
}

.about-list {
  margin: 20px 0;
}

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

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

.arrow::before {
  content: '';
  width: 0;
  height: 0;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent rgb(66, 199, 252);
  border-style: solid;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.menu-list {
  border-bottom: 1px solid rgb(66, 199, 252);
}

.menu-list li {
  border-top: 1px solid rgb(66, 199, 252);
  padding: 15px;
  text-align: left;
}

.copyright {
  color: rgb(66, 199, 252);
  text-align: center;
  font-size: 0.750rem;
  padding: 10px 0;
}
