@charset "UTF-8";
/* =========================================================
   えひめスクラムプロジェクト  COLUMN LIST PAGE
   - 一覧の共通UI: list.css
   - ページヘッダー: common.css
   - カード: common.css（cg--column）
   ========================================================= */

/* =========================================================
   PAGE HEAD ILLUST（ページ固有）
   ========================================================= */
.head__content .head__illust {
    width: 352px;
    position: relative;
}
.head__content .head__illust img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list-filter {
    max-width: 590px;
}
@media screen and (max-width: 1024px) {
    .head__content .head__illust {
        width: 290px;
    }
    .head__content .head__illust img {
        transform: translate(-50%, calc(-50% + 20px));
    }
}
@media screen and (max-width: 680px) {
    .head__content .head__illust {
        width: 200px;
    }
}
@media screen and (max-width: 500px) {
    .head__content .head__illust {
        width: 120px;
    }
}

/* =========================================================
   TAG FILTER HEADING（ハッシュタグ絞り込み中の見出し）
   ========================================================= */
.tag-filter-heading {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 24px;
    margin-bottom: 24px;
    color: #333;
}
@media screen and (max-width: 680px) {
    .tag-filter-heading {
        font-size: 15px;
        margin-top: 18px;
    }
}
