@charset "UTF-8";

.articleList_title {
    margin-bottom: 0;
    font-size: 16px;
}

.articleList_date {
    font-size: 12px;
    margin-bottom: 0;
}

.post_thmnl {
    width: 200px;
    margin-right: 16px;
    height: 100px;
    img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    &.eyeCatchDefo {
        background-color: #FFD900;
        a {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }
        img {
            width: 30px;
        }
    }

}

.post_texts {
    width: 100%;
    max-width: 750px;

    span {
        display: block;
    }
}

.articleList_to_content {
    margin-left: 16px;
    display: inline-block;

    a {
        color: #0075A9;
    }
}

.categoryList {
    margin-bottom: 48px;
    width: 224px;

    .categoryListUL {
        margin-bottom: 48px;
        li {
            display: flex;
        }
    }

    .listTitle {
        width: 100%;
        background-color: #ffd900;
        text-align: center;
        padding: 8px 0;
        font-size: 16px;
        margin-bottom: 14px;
    }
    @media screen and (width < 767px) {
        width: 100%;
        .categoryListUL {
            margin-bottom: 32px;
        }
    }
}

.archiveListDIV {
    .year {
        cursor: pointer;
        transition: .3s;
        margin-bottom: 0;
        display: flex;
    }

    .year:hover {
        color: #5ECBC9;
    }

    ul {
        display: none;
        font-size: 14px;
        margin-left: 14px;
        &.current {
            display: block;
        }
        li {
            display: flex;
        }
    }
}

/* //post list */

/* pager */
.pagerWrapper{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.pager {
    font-size: 15px;
    padding: 10px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    span,
    a {
        margin: 0 0 16px 20px;
        padding: 5px 10px;
        font-size: 15px;
        color: #1d94d4;
        border: 1px solid #1d94d4;
        @media screen and (width < 767px) {
            margin: 0 0 16px 8px;
        }
    }

    span:not(.dots):hover,
    a:hover {
        background-color: #1d94d4;
        color: #fff;
    }

    .current {
        background-color: #1d94d4;
        color: #fff;
    }

    .next,
    .prev {
        border: none;
        &:hover {
            color: #1d94d4;
            background-color: transparent;
            text-decoration: underline;
        }
    }
}

/* //pager */
/* //post list */

/* single */
.single {
    .articleDIV {
        width: 100%;
        position: relative;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;

        /* wp標準 */
        strong {
            font-weight: bold;
        }
        .alignleft {
            margin: 0 0 0 0 !important;
        }
        ul {
            list-style-type: disc !important;
        }
        ol {
            list-style-type: decimal !important;
        }
        img.fullsize {
            max-width: 100% !important;
        }
        /* //wp標準 */

        h3 {
            font-size: 24px;
            text-align: center;
            font-weight: 800;
            margin-bottom: 32px;
        }
        p {
            line-height: 2;
        }
        a {
            text-decoration: underline;
            color: #1D94D4;
        }

        img {
            display: block;
            margin: 0 auto 24px;
            /*width: auto;*/
            width: 100%;
            max-width: 450px;
            height: auto;
        }
        .post_date {
            display: block;
            text-align: right;
            margin-bottom: 32px;
            font-size: 12px;
        }

        .single_pager {
            margin: auto 0 32px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding-top: 32px;
            .prev a,
            .next a {
                text-decoration: none;
            }

            .prev a:hover,
            .next a:hover {
                text-decoration: underline;
            }
        }

        .gallery {
            display: grid;
            grid-auto-rows: 230px;
            grid-template-columns: repeat(auto-fit, 186px);
            justify-content: space-around;
            grid-row-gap: 16px;
            grid-column-gap: 1px;
            margin-bottom: 32px;

            dl {
                position: relative;
                border: 1px solid #eee;
                border-radius: 10px;
                img {
                    padding: 15px 0;
                    width: 160px;
                    height: 185px;
                    object-fit: cover;
                    margin: 0 auto;
                    overflow: hidden;
                    text-align: center;
                    display: block;
                }
            }
            .gallery-item + br {
                display: none !important;
            }

        }
    }
}
/* //single */
