      .wct__category-title {
  text-align: center;
  overflow: hidden;
}
      .wct__category-title h3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 0.25em;
        font-family: "nimbus-sans", sans-serif;
        font-size: 3rem;
        line-height: 1.2;
        letter-spacing: -0.2rem;
        word-spacing: -0.2rem;
        color: #2A495A;
        margin: 0 0 0.5em 0;
      }
      @media screen and (min-width: 37.5em) {
        .wct__category-title h3 {
          font-size: 4rem;
          letter-spacing: -0.25rem;
          margin: 0 0 0.5rem 0;
        }
      }
      .wct__category-title h3::before, .wct__category-title h3::after {
        content: "";
        height: 1px;
        width: 0.5em;
        background-color: #2A495A;
        -ms-flex-negative: 0;
            flex-shrink: 0;
      }
      .wct__category-title a {
        color: #2A495A;
        opacity: 1;
      }
      .wct__category-title a:hover {
        cursor: pointer;
        -webkit-animation: hoverFade 1s;
                animation: hoverFade 1s;
      }
      @keyframes hoverFade {
        0% {
          opacity: 0.3;
        }
        100% {
          opacity: 1;
        }
      }

.wct__category-cap {
  display: none;
}
@media screen and (min-width: 37.5em) {
  .wct__category-cap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2A495A;

  }
}
/* ===== グリッド基本レイアウト ===== */
:root {
  --wct-thick-line: 6px;
  --wct-space: 32px;
  --wct-start-offset: calc(var(--wct-thick-line) + var(--wct-space));
  --wct-total-offset: calc(var(--wct-start-offset) * 2);
  --wct-line-color: #999;
}

/* ===== グリッド基本レイアウト(常に1カラム) ===== */
.wct-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0 15px;
  margin: 0 auto 10px auto;
  max-width: 1030px;
}
@media screen and (min-width: 37.5em) {
  .wct-grid {
    padding-top: 20px;
  }
}

.wct-item {
  position: relative;
  overflow: visible;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.wct-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.wct-item:hover {
  background-color: #f6faf5;
}

/* ===== 内部レイアウト ===== */
.wct-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  padding: 15px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 37.5em) {
  .wct-inner {
    padding: 20px;
  }
}

/* サムネイル */
.wct-thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 70px;
  aspect-ratio: 3 / 2;
  width: auto;
  background: #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
  color: #999;
  text-align: center;
  line-height: 1.4;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 37.5em) {
  .wct-thumb {
    height: 80px;
  }
}

.wct-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* テキストエリア */
.wct-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.wct-text h3 {
  margin: 0 0 5px 0;
  font-size: 15px;
  color: #2A495A;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 37.5em) {
  .wct-text h3 {
    font-size: 16px;
    margin: 0 0 8px 0;
  }
}

.wct-text p {
  margin: 0;
  font-size: 11px;
  color: #2A495A;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 37.5em) {
  .wct-text p {
    font-size: 13px;
  }
}

/* ===== 下の破線(横線) ===== */
.wct-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, var(--wct-line-color) 0, var(--wct-line-color) var(--wct-thick-line)) 0 0/var(--wct-thick-line) 1px no-repeat, repeating-linear-gradient(to right, var(--wct-line-color) 0px, var(--wct-line-color) 1px, transparent 1px, transparent 2px) calc(var(--wct-start-offset)) 0/calc(100% - var(--wct-total-offset)) 1px no-repeat, linear-gradient(to right, transparent 0, transparent calc(100% - var(--wct-thick-line)), var(--wct-line-color) calc(100% - var(--wct-thick-line))) 0 0/100% 1px no-repeat;
  z-index: 3;
}

/* 最後の項目だけ下線なし */
.wct-grid .wct-item:last-child::after {
  display: none;
}

/* 縦線は常に非表示 */
.wct-right {
  display: none;
}