@charset "UTF-8";

.admin_login {
  display: none !important;
}

.blog_content li {
  list-style: none;
  box-shadow: 0 0.1em 0.2em #999;
  margin-bottom: 1em;
  transition: 0.2s;
  height: 6em;
}

.blog_content li:hover {
  box-shadow: 0 0.3em 0.3em #999;
  transform: scale(1.01) translateY(-0.1em);
}

.blog_content li a {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 5em;
  text-decoration: none;
}

.blog_content figure {
  width: 10em;
}

.blog_content img {
  display: block;
  object-fit: cover;
  height: 100%;
}

.blog_content dl {
  padding: 0.5em;
  width: 100%;
  position: relative;
}

.blog_content dl::before {
  content: "続きを読む";
  color: white;
  background-color: #495587;
  font-size: 0.8em;
  position: absolute;
  bottom: 0.6em;
  right: 0.6em;
  padding: 0.25em 1em 0.25em 0.5em;
  line-height: 1;
  border-radius: 0.4em;
}

.blog_content dl::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  color: white;
  font-size: 0.8em;
  position: absolute;
  bottom: 0.8em;
  right: 1em;
  line-height: 1;
}

.blog_content dt {
  font-size: 0.7em;
  line-height: 1;
  margin-bottom: 0.5em;
}

.blog_content dt::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f073";
  display: inline-block;
  font-size: 1em;
}

.blog_content dd {
  color: #495587;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.2;
}

/*------------------------------*/

@media (min-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .bloglist {
    margin-bottom: 1em;
    flex: 1;
  }

  .blog_content ul {
    display: flex;
    flex-wrap: wrap;
  }

  .blog_content li {
    width: calc(50% - 0.25em);
    margin-bottom: 0.5em;
  }

  .blog_content li:nth-of-type(odd) {
    margin-right: 0.5em;
  }
} /*------------------------------*/
