@charset "UTF-8";
/* 変数 */
section.entry {
  background: #fff;
  padding: 50px 0;
}

.entry-meta {
  margin-bottom: 30px;
  border-bottom: 1px solid #c9c9c9;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.entry-meta h1.entry-title {
  font-size: 22px;
  width: 100%;
}
.entry-meta .entry-cat {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
  background: #4663a7;
  color: #fff;
}
.entry-meta ul.data-meta {
  display: flex;
  gap: 15px;
  list-style: none;
}
.entry-meta ul.data-meta li.entry-date {
  padding-left: 20px;
}
.entry-meta ul.data-meta li.entry-date:before {
  position: absolute;
  left: 0;
}
.entry-meta ul.data-meta li.entry-date.published:before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.entry-meta ul.data-meta li.entry-date.updated:before {
  content: "\f021";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.post-thumb {
  margin-bottom: 30px;
}
.post-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-content p {
  margin-bottom: 30px;
}
.post-content h2 {
  margin: 30px auto;
  z-index: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
}
.post-content h2:before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50%;
  z-index: -1;
  background: #aee794;
}
.post-content h2:after {
  content: "";
  display: block;
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1%;
  transform: skewX(-10deg);
  z-index: -1;
  background: #aee794;
}
.post-content h3 {
  margin: 30px auto;
  background: #aee794;
  padding: 5px 10px;
}

section.related-posts {
  background: #fff;
  padding: 30px 0;
}
section.related-posts p.section-title {
  color: #163a9d;
  font-size: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
  font-weight: bold;
  text-align: center;
  margin: 30px auto;
}

/**/
.author-title {
  font-size: clamp(1.375rem, 1.278rem + 0.37vw, 1.5rem);
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto;
  padding: 15px 30px;
  border-bottom: 2px dashed #aa8d80;
}

.author-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px auto;
}
.author-box .author-image {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 160px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.author-box .author-image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-box .author-name {
  text-align: center;
}
.author-box .author-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.author-box .author {
  width: 160px;
}
.author-box .author-info {
  width: calc(100% - 175px);
}
.author-box .author-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.author-box a {
  font-size: clamp(1.125rem, 0.979rem + 0.56vw, 1.313rem);
}
.author-box a.link {
  font-size: 18px;
  color: #5e5e5e;
}
.author-box a.twitter {
  color: #000;
}
.author-box a.instagram {
  color: #c3027d;
}
.author-box a.facebook {
  color: #007bff;
}
@media only screen and (max-width: 460px) {
  .author-box .author,
  .author-box .author-info {
    width: 100%;
  }
  .author-box .author-image {
    margin: auto;
  }
}

.fa-twitter:before {
  content: "𝕏" !important;
  font-family: unset;
  font-weight: bold;
}/*# sourceMappingURL=post.css.map */