.genre-nav {
  margin: 56px 0 24px;
}

section.module-fortune-list {
  margin: 0px 0px 160px;
  padding-top: 56px;
}
.module-fortune-list__col:first-child {
  display: flex;
  aspect-ratio: 4 / 3;
  position: sticky;
  top: 65px;
  .matome__time {
    position: absolute;
    top: 0;
    left: -8px;
    transform: rotate(90deg);
    transform-origin: left top;
    font-family: var(--font-figtree);
    font-size: 10px;
    line-height: 1;
  }
  .feature__link {
    width: 100%;
    height: 100%;
    position: relative;
    &::after {
      display: block;
      content: "";
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
      z-index: 0;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
  .feature__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .feature__title {
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
    padding: 0 40px;
    margin: auto;
    display: grid;
    grid-template-columns: calc(100% - 25px) 1fr;
    align-items: center;
    justify-content: space-between;
    &::after {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      rotate: 45deg;
      margin-left: 10px;
    }
    span {
      font-size: 12px;
      line-height: 1.6;
      position: absolute;
      top: -24px;
      left: 40px;
    }
  }
}
.module-fortune-list__col:last-child {
  border: solid 1px #e7e7e7;
  border-right: 0;
  border-bottom: none;
  .article__title {
    font-size: 14px;
    line-height: 1.6;
  }
}

.module-fortune-list__inner {
  display: grid;
  grid-template-columns: 466px 1fr;
  margin-bottom: 120px;
  margin-left: 56px;

  .article-list__item {
    padding: 32px 0;
    border-bottom: 1px solid #e7e7e7;
  }
  .article-list {
    margin-bottom: 0;
  }
  .article-list .article__box {
    padding: 0 32px;
  }
  .article__imgwrap {
    aspect-ratio: 1 / 1;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .article__content {
    margin-top: 8px;
  }
}

.module-fortune-list__inner:not(.matome) {
  .article-list {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
  .article-list .article__box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 32px;
  }
  .article__content {
    margin-top: 0;
  }
  .article__time {
    display: block;
    position: relative;
    transform: inherit;
    font-size: 10px;
    line-height: 1;
    left: 0;
    margin-bottom: 8px;
  }
  .article__imgwrap {
    max-width: 147px;
  }
}

.module-fortune-list .module-fortune-list__inner:not(:has(~ .module-fortune-list__inner)) {
  margin-bottom: 0;
}

.module-fortune-list__inner.new .matome__time::before {
  content: "\025cf";
  color: var(--color-green);
  padding-right: 4px;
}

