@charset "UTF-8";
/* 日本語指定 */
/* ベース、文字デザイン */
.content_design h2 {
  font-size: 2.4rem;
  margin: 5vh 0 3vh;
  line-height: 1.6;
  padding: 2vh;
  background-color: #393939;
  color: #fff;
  text-align: left;
  border-bottom: none;
}
@media screen and (max-width : 900px) {
  .content_design h2 {
    font-size: 2.2rem;
    margin: 4vh 0 2vh;
  }
}
@media screen and (max-width : 600px) {
  .content_design h2 {
    font-size: 1.8rem;
  }
}
.content_design h2 b, .content_design h2 span {
  color: #fff;
}
.content_design h3 {
  border-left: 8px solid #393939;
  color: #393939;
  padding: 8px 10px;
  font-size: 2.2rem;
  margin: 5vh 0 3vh;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width : 600px) {
  .content_design h3 {
    font-size: 1.8rem;
    margin: 4vh 0 2vh;
  }
}
.content_design h4 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width : 600px) {
  .content_design h4 {
    font-size: 1.8rem;
  }
}
.content_design h5 {
  font-size: 1.8rem;
  margin-bottom: 1.6vh;
  display: flex;
  justify-content: center;
  text-align: center;
}
.content_design h5:before {
  border-top: 1px solid #000;
  max-width: 300px;
  margin-top: 2vh;
  margin-right: 0.5em;
  content: "";
  display: inline;
  flex-grow: 1;
}
.content_design h5:after {
  border-top: 1px solid #000;
  max-width: 300px;
  margin-top: 2vh;
  margin-left: 0.5em;
  content: "";
  display: inline;
  flex-grow: 1;
}
.content_design p {
  text-align: justify;
  line-height: 2.2;
  padding: 0;
}
.content_design a {
  text-decoration: underline;
}
.content_design strong {
  font-weight: bold;
}
.content_design ol, .content_design ul {
  list-style: revert;
  padding-left: 25px;
  margin: 1rem 0;
}

/* 表、テーブル */
.single_article table {
  margin: 2rem auto;
  border: 3px solid #000;
}
.single_article table thead tr {
  border-bottom: 2px solid;
}
.single_article table thead tr th {
  padding: 1rem 0.5rem;
  border-right: 1px solid #000;
}
.single_article table thead tr th:last-child {
  border-right: 0;
}
.single_article table tbody tr {
  border-bottom: 1px solid #000;
}
.single_article table tbody tr:last-child {
  border-bottom: 0;
}
.single_article table tbody tr th,
.single_article table tbody tr td {
  padding: 1rem 0.5rem;
  border-right: 1px solid #000;
}
.single_article table tbody tr th:last-child,
.single_article table tbody tr td:last-child {
  border-right: 0;
}

.wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th {
  border-color: unset;
}

/* 画像のキャプション */
.wp-block-image {
  text-align: center;
}
.wp-block-image img {
  margin-bottom: 0;
}
.wp-block-image figcaption {
  font-size: 1.4rem;
}

/* ブログカード(記事内、関連記事抜粋) */
.blog-card {
  position: relative;
  border: 1px solid #e5e5e5;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  margin: 1em 0;
  transition: 0.3s ease-in-out;
}
.blog-card:hover {
  cursor: pointer;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.blog-card a {
  text-decoration: none;
  display: block;
  transition: 0.3s ease-in-out;
}
.blog-card a:hover {
  color: #333;
  background: rgba(235, 235, 235, 0.8);
  text-decoration: none;
}
.blog-card a .blog-card-label {
  display: inline-block;
  position: absolute;
  background-color: #003567;
  top: 0px;
  left: 0px;
  width: 70px;
  height: 25px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 25px;
  transform-origin: 50% 50%;
  -webkit-animation: animScale 3.5s ease-out;
          animation: animScale 3.5s ease-out;
}
.blog-card a .blog-card-thumbnail {
  width: 200px;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width : 450px) {
  .blog-card a .blog-card-thumbnail {
    width: 160px;
  }
}
.blog-card a .blog-card-thumbnail img {
  padding: 0;
  max-width: 100%;
  margin-bottom: 0;
}
.blog-card a .blog-card-content {
  display: table-cell;
  vertical-align: middle;
  padding: 0.4em;
  border-left: 1px solid #e5e5e5;
}
.blog-card a .blog-card-title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width : 450px) {
  .blog-card a .blog-card-title {
    font-size: 0.85em;
  }
}
.blog-card a .clear {
  clear: both;
}

/* SNS共有ボタン */
.share {
  border: 1px solid #afafaf;
  display: inline-block;
  padding: 1rem;
  margin-top: 3rem;
}
.share p {
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 1%;
}
/*# sourceMappingURL=editor-style.css.map */