.honbun {
  font-family: Yomogi;
}

.honbun > h1 {
  color: #FAA0EC;
  display: inline;
  background: linear-gradient(transparent 60%, rgba(0, 242, 255, 0.4) 60%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 4px;
}

.honbun > h2 {
  color: #A0FAEC;
  text-decoration: underline dashed rgba(0, 242, 255, 0.4);
  padding: 0 4px;
}

.honbun > p {
  font-size: 1.5em;
  color: #ffffff;
}

.topline {
  font-family: Yomogi;
  font-size: 1.5em;
  color: #66aaff !important;
}

.blog-card {
  display: flex;
  text-decoration: none;
  border: 1px solid var(--accent-cyan);
  background: rgba(255, 255, 255, 0.05);
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  height: 120px; /* 高さを固定して正方形を作る */
}

.blog-card:hover {
  background: rgba(30, 30, 85);
  border: 1px solid #ffff00;
}

.blog-card-img-wrapper {
  width: 120px;
  height: 120px;
  min-width: 120px;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* これで強制的に正方形に収める！ */
}

.blog-card-img {
  width: 150px;       /* 好きな幅に調整してね */
  min-width: 150px;
  height: 150px;      /* ここ重要！高さがないと見えないよ */
  background-size: cover;
  background-position: center;
}

.blog-card-content {
  padding: 15px;
  overflow: hidden;
}

.chu {
  text-align: right;
  color: #44eedd !important;
  font-size: 0.8em !important;
}

.backlink {
  display: inline-block;
  width: max-content; /* 中身の最小幅に合わせる */
  background-color: #000033;
  margin: 20px 0px;
  padding: 3px 10px;
  border-radius: 10px;
  vertical-align: middle;
}
