@charset "UTF-8";
/* =============================================================================


     blog


============================================================================= */
.blog-container {
  gap: 0 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  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;
}

.blog-contents {
  width: 60%;
}

.blog-content {
  background: #fff;
  line-height: 2.25;
  padding: 40px;
}

.blog-content + .blog-content {
  margin-top: 40px;
}

.blog-ttlbox {
  gap: 0 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.blog-date {
  font-weight: 700;
  line-height: 1;
}

.blog-category-list {
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.blog-category-item {
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.blog-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 1em;
  /*   color: $cr_acc01; */
}

.single-content {
  margin-top: 0px;
}

.single-content a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.single-content a:hover {
  /*       color: $cr_acc01; */
  text-decoration: underline;
}

.single-content img {
  margin: 20px 0;
}

.single-content-img {
  margin-bottom: 12px;
  margin-top: 0px;
  max-height: unset;
  max-width: 100%;
}

.category-contents {
  color: #fff;
  width: 20%;
}

.category-ttl {
  font-size: 2.6rem;
  font-style: italic;
  font-weight: bold;
}

.category-list {
  margin-top: 60px;
}

.category-item {
  font-weight: bold;
  line-height: 2;
  padding-right: 1em;
  position: relative;
}

.category-item:before {
  content: "・";
}

.category-item a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.category-item a:hover {
  opacity: 0.7;
}

.category-item + li {
  margin-top: 0.25em;
}

@media (max-width: 1248px){
  .category-ttl {
    font-size: 2rem;
  }
}

@media (max-width: 767px){
  .blog-container {
    gap: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-contents {
    width: 100%;
  }
  .blog-content + .blog-content {
    margin-top: 40px;
  }
  .blog-ttlbox {
    gap: 10px;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .category-contents {
    width: 100%;
  }
  .category-ttl {
    font-size: 1.8rem;
  }
  .category-list {
    margin-top: 40px;
  }
}


/*# sourceMappingURL=blog.css.map*/