.pagenation {
  width: 100%;
}

.section__blog--archive {
  clear: none;
  padding-bottom: 80px;
  padding-top: 80px;
}

.blogs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  float: left;
  width: 70%;
  padding-bottom: 100px;
}

.blogs .blog {
  width: 45%;
  margin-bottom: 150px;
}
.blogs .blog a{
  display: block;
  transition: ease .2s;
}
.blogs .blog a:hover{
  opacity: .75;
  transition: ease .2s;
}

.blogs .blog--ttl {
  font-size: 1.4rem;
  font-weight: bold;
  padding-top: 5px;
}

.blogs .blog--date {
  font-size: 1.2rem;
  color: #419198;
}

.blogs .blog--thumbnail {
    height: 278px;
    overflow-y: hidden;
    background: #F1F8FE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogs .blog--thumbnail img {
  width: 100%;
  height: 278px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .blogs .blog--thumbnail img {
  height: calc(100vw - 30px);
  }
}

.right-sidebar {
  float: right;
  width: 20%;
  font-size: 1.4rem;
}

.right-sidebar .sidebar__ttl {
  background: #419198;
  color: white;
  padding: 5px 15px;
  margin-bottom: 10px;
}

.right-sidebar .sidebar__list {
  padding: 5px 15px;
  line-height: 2.5;
}

.right-sidebar .sidebar__list li {
  font-weight: bold;
}
.right-sidebar .sidebar__list li:hover {
  opacity: .7;
  transition: ease .2s;
}

.secttion__blog--details {
  padding-top: 100px;
}

.blog--detail {
  float: left;
  width: 70%;
  padding-bottom: 150px;
}

.blog--detail .blog--detail__ttl {
  color: #419198;
  font-size: 2.2rem;
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.blog--detail .blog--detail__ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 1px;
  background: #419198;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog--detail .blog--detail__sub-ttl {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.blog--detail .blog--detail__thumbnail {
  margin-bottom: 60px;
}

.blog--detail .blog--detail__txt {
  margin-bottom: 70px;
  font-size: 1.4rem;
  line-height: 2.2;
}

.blog--detail .blog--detail__date {
  text-align: right;
  margin-bottom: 50px;
  font-weight: bold;
}
.blog--detail__txt h2 {
  color: #419198;
  font-size: 2rem;
  position: relative;
  padding-left: 50px;
  margin: 60px 0 28px;
}
.blog--detail__txt h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 1px;
  background: #419198;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blog--detail__txt h3 {
  margin: 26px 0 15px;
  font-weight: bold;
}
/*# sourceMappingURL=blog.css.map */