@charset "UTF-8";

.topics__wrapper {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 110px;
}

.topics__lists
{
    display: flex;

    flex-wrap: wrap;
    margin-bottom: 30px;
}
.topics__lists .topics-list-item
{
    display: block;

    height: auto;

    background: var(--fff, #fff);
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, .1);
}
.topics__lists .topics-list-item:nth-of-type(-n+2)
{
    width: calc(50% - 19px);
    margin-bottom: 40px;
}
.topics__lists .topics-list-item:nth-of-type(2)
{
    margin-left: auto;
}
.topics__lists .topics-list-item:nth-of-type(n+3)
{
    width: calc(33.3333333333% - 20px);
    margin-bottom: 30px;
}
.topics__lists .topics-list-item:nth-of-type(n+3) .topics-list-item__link--thumbnail
{
    height: 156px;
    margin: 0 0!important;
}
.topics__lists .topics-list-item:nth-of-type(4),
.topics__lists .topics-list-item:nth-of-type(5),
.topics__lists .topics-list-item:nth-of-type(7),
.topics__lists .topics-list-item:nth-of-type(8),
.topics__lists .topics-list-item:nth-of-type(10),
.topics__lists .topics-list-item:nth-of-type(11)
{
    margin-left: auto;
}
.topics__lists .topics-list-item__link--thumbnail
{
    position: relative;

    display: block;

    width: 100%;
    height: 240px;
    margin: 0 0!important;
}
.topics__lists .topics-list-item__link--thumbnail > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;
       object-fit: cover;
}
.topics__lists .topics-list-item__link--thumbnail .topics-label
{
    font-family: "Baskervville", serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;

    position: absolute;
    position: absolute;
    top: 10px;
    left: 12px;

    display: inline-flex;

    padding: 0 4px;

    letter-spacing: 1.2px;

    color: #fff;
    color: var(--fff, #fff);
    background: var(--tag-gold, #b89d4b);

    gap: 10px;
    align-items: center;
    justify-content: center;
}
.topics__lists .topics-list-item__link--text
{
    padding: 15px 20px 27px;
}
.topics__lists .topics-list-item__link--text .item-title
{
  font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;

    margin-bottom: 8px;

    letter-spacing: 1.5px;

    color: var(--333, #333);
}
.topics__lists .topics-list-item__link--text .item-description
{
  font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 170%; /* 23.8px */

    letter-spacing: .7px;

    color: var(--333, #333);
}

.topics__link {
  color: #000!important;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.6px;
  text-decoration-line: underline;
  display: block;
}

@media screen and (max-width: 767px)
{
    .topics__lists
    {
        flex-direction: column;
    }
    .topics__lists .topics-list-item:nth-of-type(-n+2)
    {
        width: 100%;
    }
    .topics__lists .topics-list-item:nth-of-type(n+3)
    {
        width: 100%;
    }
}

/* 20240531 add */
@media screen and (max-width: 430px) {
    .topics-list-item:nth-child(n+5) {
        display: none;
    }
    .topics__lists .topics-list-item:nth-of-type(n+3) {
        margin-bottom: 40px;
    }
    .topics__wrapper {
        padding-top: 50px!important;
    }
}