﻿@charset "UTF-8";

body {
}

/* -- 記事リスト -- */
.column_wrapper {
    margin: 0 auto;
    width: 100%;
}

.list_wrapper {
    background-color: #F8F8F8;
    margin: 0 auto;
    padding: 60px 8%;
    width: 100%;
    box-sizing: border-box;
}

@media screen and (min-width: 920px) {
    .list_wrapper {
        width: 100%;
    }
}

.filter_tag {
    margin: 0 auto 20px;
    padding: 0;
    font-weight: bold;
    color: #363636;
    max-width: var(--maxContentWidth);
}

    .filter_tag span {
        margin-right: 5px;
        font-size: 1.3em;
    }

.column_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    max-width: var(--maxContentWidth);
    gap: 0;
}

    .column_list li {
        background-color: #ffffff;
        margin-bottom: 60px;
        width: 100%;
    }

@media screen and (min-width: 920px) {
    .column_list {
        gap: 30px;
    }

        .column_list li {
            width: calc(100% / 3 - 30px);
        }

        .column_list:after {
            content: "";
            display: block;
            width: calc(100% / 3 - 30px);
            height: 0;
        }
}

.column_image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    overflow: hidden;
}

@media screen and (min-width: 920px) {
    .column_image {
        height: 230px;
    }
}

.column_text {
    padding: 20px 25px;
    box-sizing: border-box;
}

.column_tag {
    display: inline-block;
    background-color: #383838;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 0 10px;
    font-weight: normal;
    font-size: 12px;
    color: #ffffff;
}

.column_date {
    display: block;
    margin-top: 10px;
}

.column_title {
    display: block;
    margin: 30px auto;
    font-size: 1.1em;
}

.label_new {
    display: inline-block;
    font-weight: bold;
    color: #B01B1B;
}

.column_body {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #565656;
}

/* -- 記事詳細 -- */

/* 項目列挙 */
ul.enumerate {
    list-style: disc;
    margin-left: 1.0em;
    padding-left: 1.5em;
}

/* 出典 */
.source {
    margin-top: 40px;
    font-size: 0.8em;
}

ul.source_list {
    list-style: disc;
    padding-left: 1.5em;
}

/* 追加画像 */
.other_image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
    padding: 20px 10px 60px;
    gap: 10px;
    box-sizing: border-box;
}

    .other_image:not(:has(.item:only-child))::after {
        display: block;
        content: "";
        width: calc(100% / 2 - 10px);
    }

    .other_image > .item {
        max-height: 115px;
        width: calc(100% / 2 - 10px);
        overflow: hidden;
        cursor: pointer;
        transition: 0.3s;
    }

        .other_image > .item:hover {
            opacity: 0.8;
        }

@media screen and (min-width: 768px) {
    .other_image::after {
        display: none;
    }

    .other_image > .item {
        max-height: 240px;
        width: calc(100% / 3 - 10px);
    }
}