/* ==========================
   Link
========================== */

a,
a:visited,
a:hover,
a:active {
    color: inherit;
}

.article a {
    text-decoration: none;
}


/* ==========================
   Layout
========================== */

.article-frame {
    margin: 5% 8%;
}

.article-area {
    max-width: 73.88%;
    width: 100%;
}

.contents-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


/* ==========================
   Page Title
========================== */

.post-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-align: left;
    margin-left: 12%;
}

.post-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-align: left;
    font-size: 18px;
    margin: 0 12%;
    margin-bottom: 20%;
}

.lead {
    letter-spacing: 1px;
    font-size: 24px !important;
    line-height: 36px;
}


/* ==========================
   Article Card
========================== */

.contents-box {
    width: 46.97%;
    margin-bottom: 3rem;
}

.contents-box .thumb-img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.contents-box .thumb-img.no-image {
    aspect-ratio: 900 / 600;
    object-fit: contain;
    background: #fff;
    border: 1px solid #22AC38;
    box-sizing: border-box;
}

.contents-box h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
}


.contents-box .brand {
    font-size: 20px;
    margin-top: .6rem;
    margin-bottom: .6rem;
    font-weight: 700;
}

.contents-box .kinds {
    display: inline-block;
    padding: 7px 15px;
    font-size: 16px;
    color: #fff;
    background-color: #22AC38;
}

.contents-box .title {
    font-size: 20px;
    line-height: 30px;
    margin-block-start: .6rem;
    margin-block-end: .4rem;
}

.contents-box .type {
    margin-bottom: 6px;
    color: #797676;
    font-weight: 700;
    margin-top: .4rem;
}

.contents-box .result {
    display: inline-block;
    padding: 5px 10px;
    margin-top: 6px;
    margin-right: 10px;
    font-size: 16px;
    color: #1EAA39;
    border: 2px solid;
    border-radius: 8px;
    font-weight: 700;
}


/* ==========================
   Pagination
========================== */

.pagination {
    margin: 40px 0 0;
}

.nav-links {
    display: flex;
    justify-content: center;
}

.page-numbers li {
    display: inline-block;
}

.pagination .page-numbers {
    display: inline-block;
    margin-right: 20px;
    padding: 20px 25px;
    color: #333;
    background: #fff;
    border-radius: 3px;
}

.pagination .current {
    padding: 20px 25px;
    color: #fff;
    background: #1EAA39;
}

.pagination .prev,
.pagination .next {
    color: #1EAA39;
    background: transparent;
    box-shadow: none;
}

.pagination .dots {
    background: transparent;
    box-shadow: none;
}


/* ==========================
   Responsive
========================== */

@media screen and (max-width: 768px) {

    .contents-box {
        width: 100%;
        padding: 0;
        margin-bottom: 0;
    }

    .contents-box .thumb-img {
        width: 100%;
        margin: 0 auto;
        margin-top: 10%;
        margin-bottom: 3rem;
    }

    .contents-box p {
        margin-top: 25px !important;
    }

    .contents-box .type {
        margin-left: 0 !important;
    }

    .contents-box .title {
        margin: 0 0 10px;
    }

    .contents-box .brand {
        margin: 6px 0 12px !important;
    }

    .lead {
        margin: 0 5%;
        font-size: 23px !important;
        line-height: 30px;
    }

    .type {
        margin: 0 5% 6px;
    }

    .result {
        font-size: 14px !important;
    }

}