@charset "UTF-8";
/******************************************************
* シングルページ - お知らせ
* single-post.scss
* -----------------------------------------------------
* CSS / Single Post Page
* single-post.css
*******************************************************/
.entry-post {
  max-width: 1000px;
  margin: 30px auto;
}
.entry-post .page-header__breadcrumb {
  margin-bottom: 50px;
  font-size: 0.8rem;
}
.entry-post .post-date {
  color: #333;
  padding: 2px 10px;
  margin-bottom: 20px;
}
.entry-post .post-content {
  background-color: #F8F8F8;
  padding: 30px;
  margin-bottom: 50px;
}
.entry-post p {
  line-height: 1.8;
  margin-bottom: 20px;
}
.entry-post p img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.entry-post p img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.entry-post h1 {
  width: 100%;
  position: relative;
  line-height: 1.4;
  font-size: 2rem;
  font-weight: 600;
  padding: 0.25em 1em;
  display: inline-block;
  color: #7C9C86;
  background-color: #F2FAF5;
  margin-bottom: 30px;
  top: 0;
}
.entry-post h1:before, .entry-post h1:after {
  position: absolute;
  top: 0;
  content: "";
  width: 8px;
  height: 100%;
  display: inline-block;
}
.entry-post h1:before {
  border-left: solid 2px #7C9C86;
  border-top: solid 2px #7C9C86;
  border-bottom: solid 2px #7C9C86;
  left: 0;
}
.entry-post h1:after {
  content: "";
  border-top: solid 2px #7C9C86;
  border-right: solid 2px #7C9C86;
  border-bottom: solid 2px #7C9C86;
  right: 0;
}
.entry-post h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 20px;
  border-bottom: 1px solid #7C9C86;
  border-left: 10px solid #7C9C86;
  padding: 0 10px 5px 20px;
}
.entry-post h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  border-bottom: 1px solid #7C9C86;
  padding: 0 10px 5px 0;
}

@media (max-width: 1040px) {
  .entry-post {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}