/* ===================================================================
 * font
 * ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
  font-family: 'Noto Sans JP', Georgia, serif;
  font-size: 16px;
  line-height: 1.8em;
  font-feature-settings: 'lnum';
}

/* ===================================================================
 * link
 * ================================================================ */
.headerlink {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  margin-left: 0.3em;
  text-decoration: underline;
  color: #666;
}

h1:hover .headerlink,
h2:hover .headerlink,
h3:hover .headerlink,
h4:hover .headerlink,
h5:hover .headerlink,
h6:hover .headerlink {
  opacity: 1;
}

/* ===================================================================
 * header position
 * ================================================================ */
nav ul {
  display: flex;
  flex-direction: row-reverse;
}

nav li {
  float: none;
}

/* ===================================================================
 * blockquote
 * ================================================================ */
blockquote {
  border-left: 3px solid #aaa;
}
