@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #333;
  font-size: 1rem;
  background-color: #b0c4de;
  font-family: 'RocknRoll One', sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: #333;
  text-decoration: none;
}

li {
  list-style: none;
  word-break: keep-all;
}

/*-----------------------------------------------------------------*/

.wrapper {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.readmore {
  font-size: 0.9rem;
  text-align: center;
}

.readmore a {
  position: relative;
  padding-bottom: 1px;
  color: #333;
}

.readmore a::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #333;
  transition: all 200ms ease;
}

.readmore a:hover::after {
  opacity: 0;
  transform: translateY(3px);
}

.accent {
  font-size: 1.3rem;
  font-style: italic;
}

/*---------
   header
----------*/

header {
  width: 100%;
  background-color: #fff;
}

.site-title {
  padding: 30px 20px;
  line-height: 1px;
}

.site-title a {
  display: inline-block;
}

nav {
  background-color: #333;
}

nav a {
  color: #fff;
}

nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

nav li {
  font-size: 0.9rem;
  padding: 10px 60px 10px 0;
}

/*--------
  main
----------*/

#container {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 60px;
}

main {
  width: 77%;
  line-height: 1.5;
}

main article {
  margin-bottom: 60px;
}

.article-title {
  font-size: 1.5rem;
}

main ul {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

main li {
  font-size: 0.9rem;
  margin-right: 20px;
}

main .text {
  padding: 10px 40px 30px 40px;
}

/*-------
  aside
---------*/

aside {
  width: 18%;
  padding: 20px;
}

.side-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

#archive {
  text-align: center;
  margin-bottom: 50px;
}

#archive ul {
  border-bottom: solid 1px #333;
}

#archive li {
  font-size: 0.9rem;
  border-top: solid 1px #333;
  padding: 20px;
  text-align: left;
}

/*---------
  footer
-----------*/

footer {
  font-size: 0.9rem;
  background-color: #c0c0c0;
}

#extra {
  display: flex;
  justify-content: space-between;
  padding: 50px 30px;
}

#profile {
  width: 40%;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

footer ul {
  margin: 20px 0;
}

footer ul .arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #333;
}

footer ul .arrow::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  top: 50%;
  left: 0;
  margin-top: -6px;
  transition: all 200ms ease;
}

footer ul .arrow:hover::before {
  opacity: 0;
  transform: translateX(3px);
}

#twitter {
  width: 40%;
}

.copyright {
  font-size: 0.8rem;
  text-align: center;
  padding-bottom: 20px;
}

/*------------------------------------
              sp
--------------------------------------*/

@media screen and (max-width: 767px) {
  /*--------
  header
  ----------*/
  .site-title {
    padding: 30px 20px;
  }
  nav {
    overflow-x: scroll;
  }

  /*--------
  container
  ----------*/
  #container {
    flex-direction: column;
  }
  main {
    width: 100%;
  }

  /*--------
  aside
  ----------*/
  aside {
    width: 100%;
    padding: 0;
  }

  /*--------
  footer
  ----------*/
  #extra {
    flex-direction: column;
  }
  #profile {
    width: 100%;
    margin-bottom: 30px;
  }
}