/* Your site styles shoud be in this file */

/* -- base structure -- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

html {
  overflow-y: scroll;
}

body {
  background: #293f56;
  color: #373737;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.625;
}

#page {
  max-width: 820px;
  margin: 0px auto;
  background: #fff;
  box-shadow: 0 0 30px 30px #1e2e3f;
}

#main {
  padding: 1em 0 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 700px) {
  #main {
    flex-direction: row;
  }
}

#primary {
  flex: 1;
  padding: 0 2em;
}

#secondary {
  max-width: 200px;
  padding: 0 1em;
}

a {
  color: #1982d1;
  text-decoration: none;
}

p {
  margin-bottom: 1.625em;
}

ul, ol {
  margin: 0 0 1.625em 2.5em;
}
ul {
  list-style: square;
}
ol {
  list-style-type: decimal;
}
ol ol {
  list-style: upper-alpha;
}
ol ol ol {
  list-style: lower-roman;
}
ol ol ol ol {
  list-style: lower-alpha;
}
ul ul, ol ol, ul ol, ol ul {
  margin-bottom: 0;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
caption, th, td {
  font-weight: normal;
  text-align: left;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.625em;
}

pre {
  background: #f4f4f4;
  font: 13px "Courier 10 Pitch", Courier, monospace;
  line-height: 1.5;
  margin-bottom: 1.625em;
  overflow: auto;
  padding: 0.75em 1.625em;
}

code, kbd {
  font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

/* -- header section -- */

#branding {
  border: 0px none;
  padding-bottom: 10px;
}

#branding hgroup {
  /* This image is from http://www.photolibrary.jp/ */
  background: url(/shinkai/image/banner.jpg) repeat-x top left #000;
  padding: 15px;
  text-align: right;
}

#site-title {
  font-size: 100%;
}

#site-title a {
  font-family: arial, helvetica, hirakakupro-w3, osaka, "ms pgothic", sans-serif;
  font-size: 32px;
  font-weight: normal;
  text-decoration: none;
  line-height: 1em;
  color: white;
}

#site-description {
  font-size: 13px;
  line-height: 1.125em;
  font-weight: bold;
  color: white;
}

#access {
  display: flex;
  flex-wrap: wrap;
  font-size: smaller;
  color: white;
  padding: 2px 10px;
  background: #1e2e3f;
}

#access a {
  color: white;
}

#access .crumbitem:not(:last-child):after {
  content: "＞";
  margin: 0 0.5em;
}

#access .separator {
  line-height: 3.333em;
  color: #eee;
}

@media (max-width: 479px) {
  #branding hgroup {
    background: url(/shinkai/image/banner.jpg) no-repeat bottom right #000;
    padding: 5px;
  }

  #site-title a {
    font-size: initial;
    font-weight: bold;
  }

  #site-description {
    font-size: smaller;
  }
}

/* -- main content -- */

.hentry, .no-results {
  border-bottom: 1px solid #ddd;
  margin: 0 0 1.625em;
  padding: 0 0 1.625em;
}

.hentry:last-child, .no-results {
  border-bottom: none;
}

.entry-content {
  white-space: pre-line;
}

.entry-content, .entry-summary {
  padding: 1.625em 0 0;
  margin-bottom: 1.625em;
}

.entry-content a[href^="http"]:after,
.entry-content a[href^="//"]:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.15em;
  vertical-align: -0.2em;
  background-color: currentColor;
  /* external link icon */
  -webkit-mask: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.3 3H2v11h11V9.7M7.5 8.5 14 2M9 2h5v5' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.3 3H2v11h11V9.7M7.5 8.5 14 2M9 2h5v5' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.entry-content a[href^="https://web.archive.org/"]:after {
  margin-left: inherit;
  vertical-align: inherit;
  background-color: inherit;
  -webkit-mask: inherit;
  mask: inherit;
}

.entry-content table, .comment-content table {
  border-bottom: 1px solid #ddd;
  margin: 0 0 1.625em;
  width: 100%;
}

.entry-content th, .comment-content th {
  color: #666;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.6em;
  text-transform: uppercase;
}

.entry-content td, .comment-content td {
  border-top: 1px solid #ddd;
  padding: 6px 10px 6px 0;
}

caption, th, td {
  text-align: left;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.625em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.625em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img {
  overflow-clip-margin: content-box;
  overflow: clip;
}

.entry-content img, .comment-content img, .widget img {
  max-width: 97.5%;
}

img.alignleft, img.alignright, img.aligncenter
{
  margin-bottom: 1.625em;
}

img[class*="align"]
{
  border: 1px solid #ddd;
  padding: 6px;
}

embed,
iframe,
object {
  max-width: 100%;
}

a.archive-link {
  font-size: x-small;
  margin-left: 1em;
}

.entry-title {
  background: #36414d;
  border-left: 10px solid #a3b8cc;
  padding: 5px;
  line-height: 1em;
  font-size: 26px;
  color: white;
}

.entry-title a {
  font-size: 22px;
  line-height: 1em;
  color: white;
  text-decoration: none;
}

.entry-meta {
  color: #666;
  font-size: 12px;
  line-height: 18px;
}

.entry-meta a {
  font-weight: bold;
}

#sticky {
  border-bottom: 1px solid #ddd;
  margin: 0 0 1.625em;
  padding: 0 0 1.625em;
  position: relative;
}

#banner-ad {
  height: 90px;
}

#book-list td {
  vertical-align: top;
}

/* -- sidebar -- */

.widget {
  margin: 0 0 2.2em;
}

.widget-title {
  color: #666;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.6em;
  text-transform: uppercase;
}

.widget a {
  font-weight: bold;
}

.widget a:hover,
.widget a:focus,
.widget a:active {
       text-decoration: underline;
}

.widget ul {
  font-size: 15px;
  margin: 0;
}

.widget ul li {
  color: #777;
  font-size: 13px;
}

/* -- footer -- */

#colophon {
  text-align: center;
  padding-bottom: 0.5em;
}

/*--------------------------------------
  Tag Cloud
---------------------------------------*/

#tag-cloud {
  margin: 0;
  padding: 0.5em 10px;
  font-size: 13px;
}

#tag-cloud li {
  display: inline;
}

#tag-cloud li a {
  text-decoration: none;
}

#tag-cloud li.lv1 a {
  font-size: 167%;
  font-weight: bold;
  color: #424242;
}

#tag-cloud li.lv2 a {
  font-size: 136%;
  font-weight: bold;
  color: #5e5e5e;
}

#tag-cloud li.lv3 a {
  font-size: 122%;
  font-weight: bold;
  color: #7a7a7a;
}

#tag-cloud li.lv4 a {
  font-size: 92%;
  color: #b3b3b3;
}

#tag-cloud li a:hover {
  color: #000;
}

.amazon-box[data-astro-cid-bkikhvva] {
  display: inline-block;
  width: 120px;
  margin: .5em 0 .5em .5em;
  padding: .5em;
  background-color: #f0f0f0;
}
