@charset "utf-8";

/* --------------------------------------------


記事一覧


---------------------------------------------- */


/* ---カテゴリタイトル--- */

@media only screen and (max-width:640px) {
    .categoryTitle {
        display: block;
        padding: 20px;
    }

    .categoryTitle h2 {
        text-align: start;
        line-height: 2;
    }
}


/* ---執筆者タイトル--- */

.authorTitle {
    margin-bottom: 100px;
}

/* .authorTitle img {
    width: 240px;
    margin-right: 40px;
} */

.authorTitle h3 {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

/* ---セレクトボックス--- */


.select__wrap {
    height: 40px;
    width: 240px;
    background: #ddd;
    border-radius: 5px;
    z-index: 1;
}

.select__wrap::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-bottom: 2px solid #302015;
    border-right: 2px solid #302015;
    z-index: -1;
}

select {
    /* 初期化 */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    color: #302015;
    font-size: 16px;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    font-size: 14px;
    font-size: 1.4rem;
}

option {
    font-size: 14px;
    font-size: 1.4rem;
}

select:focus-visible {
    outline: none;
}

@media only screen and (max-width:640px) {
    form {
        transform: none;
        margin: 32px 0 0;
    }

    .select__wrap {
        position: relative;
        height: 60px;
        width: 100%;
        background: #ddd;
        border-radius: 5px;
        z-index: 1;
    }


}



/* ---記事-- */

.article__list .article__list__wrap {
    margin: 40px 20px;
}

.article__card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.article__card .ranking {
    position: absolute;
    padding: 0 6px;
    top: -8px;
    left: -8px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #f56400;
    line-height: 1.4;
    border: #f56400 solid 1px;
    background-color: #fff;
    z-index: 5;
}

.article__card .article__thumbnail {
    display: block;
    width: 30%;
}

.article__card > div {
    width: 70%;
}

.article__card h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
}

.card__detail {
    margin: 10px 0;
}

.card__detail p {
    display: inline-block;
    margin-right: 20px;
    font-size: 16px;
    font-size: 1.6rem;
}

.article__card .card__detail .card__category {
    display: inline-block;
    margin-right: 20px;
    padding: 0 10px;
    color: #fff;
    background-color: #302015;
}

.article__card .authorLink {
    display: block;
}

.article__card .tag__wrap {
    margin: 0;
}

.article__card .author__position {
    font-size: 16px;
    font-size: 1.6rem;
}

.article__card .author__name {
    font-size: 24px;
    font-size: 2.4rem;
}

.article__card .author__detail {
    margin: 10px 0 24px;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.author__card {
    padding: 0 40px;
    margin-bottom: 40px;
    border-bottom: solid 1px #aaa;
}


/* ---広告-- */

.contents__left .article__ad {
    margin: 40px auto;
}


/* ---ページネーション-- */

.article__list__pagination {
    margin-top: 80px;
}

.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
}

.page-numbers li a {
    display: block;
    width: 40px;
    padding: 5px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: #aaa;
}

.page-numbers li span {
    display: block;
    width: 40px;
    padding: 5px;
    text-align: center;
    color: #fff;
    background-color: #f56400;
}

.page-numbers .prev,
.page-numbers .next {
    content: "";
    width: 28px;
    height: 28px;
    top: 10px;
    right: calc(50% - 190px);
    background-image: url(../_image/common/slideBtn.svg);
    background-color: #fff;
}

.page-numbers .prev {
    left: calc(50% - 190px);
    right: auto;
    transform: rotate(180deg);
    background-image: url(../_image/common/slideBtn.svg);
}

@media only screen and (max-width:640px) {}


.noArticle {
    margin: 60px 0;
    text-align: center;
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
}