@charset "utf-8";

.blog__ttl {
    margin: 0 0 32px;
}
.ui-time-text {
    font-size: 12px;
    color    : var(--more-light-text-color);
}

/* タグ
--------------------------- */
.md-category {
    display        : flex;
    gap            : 6px;
    align-items    : center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
}
    .md-category__items {
        padding: 7px 12px 5px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 13px;
    }
    .md-category__items:hover {
        background-color: #f2f2f2;
    }

/*-------------------------------------------------------------------------
TOP
-------------------------------------------------------------------------*/

/* MV
--------------------------- */
.blog-mv-wrap {
    overflow: hidden;
    margin-bottom: 60px;
}
.blog-mv {
    width: calc(100% + 40px);
    margin: 0 -20px 32px;
}
    .blog-mv__items {
        display: block;
        padding: 0 20px;
    }
        .blog-mv__card {
            height: 448px;
            position: relative;
        }
            .blog-mv__bottom {
                width: 100%;
                padding: 30px 30px 21px;
                position: absolute;
                bottom  : 0;
                left    : 0;
            }
                .blog-mv__category {
                    margin: 0 0 8px;
                }
                .blog-mv__title span {
                    background-color: #fff;
                    -webkit-box-decoration-break: clone;
                            box-decoration-break: clone;
                    padding: 4px 4px;
                    font-size  : 24px;
                    font-weight: 700;
                    line-height: 1.7;
                }
                .blog-mv__title .blog-mv__date {
                    background: none;
                    padding: 0;
                    margin-top: 4px;
                    display: block;
                    font-weight: normal;
                }
.blog-mv .slick-list {
    overflow: visible;
}
.blog-mv .slick-dots {
    margin-top: 24px;
}

/*-------------------------------------------------------------------------
一覧
-------------------------------------------------------------------------*/
select.ui-right {
    float: right;
    max-width: 300px;
}
#selectCategoryForm {
    position: relative;
}
svg.select-arrow {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 17px;
    bottom: 0;
    right: 18px;
    margin: auto;
}
.blog-list {
    display              : grid;
    gap                  : 40px 30px;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 0 58px;
}
    .blog-list__img {
        display: block;
        height: 200px;
        position: relative;
        margin: 0 0 11px;
    }
        .blog-list__category {
            position: absolute;
            bottom  : 10px;
            left    : 10px;
        }
        .blog-list__title {
            font-size  : 16px;
            font-weight: 700;
        }

/*-------------------------------------------------------------------------
詳細
-------------------------------------------------------------------------*/

/* HEADER
--------------------------- */
.blog__header {
    margin: 39px 0 29px;
}
    .blog__photo {
        height: 448px;
        margin: 0 0 27px;
    }
    .blog__headline {
        font-size  : 24px;
        font-weight: 700;
        line-height: 1.33;
        margin: 0 0 8px;
    }
    .blog__info {
        display    : flex;
        gap        : 8px;
        align-items: center;
    }
    .blog__tags {
        margin: 10px 8px 0 0;
    }
    .recommend-article {
        margin: 40px 0 0;
    }
    .blog__header .ui-radius-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        background-color: var(--bg-light-gray);
    }

/* 筆者プロフィール
--------------------------- */
.author-profile {
    margin: 0 0 24px 0;
    padding: 16px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
}
    .author-profile__img {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100vw;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }
        .author-profile__img img {
            width: 100%;
        }
    .author-profile__contents {
        flex: 1;
    }
        .author-profile__detail {
            margin-bottom: 5px;
        }
            .author-profile__name {
                font-weight: bold;
            }
                .author-profile__label {
                    padding: 1px 5px 0;
                    font-size: 13px;
                    font-weight: normal;
                    background-color: var(--bg-light-gray);
                }
            .author-profile__career {
                color: var(--gray-text);
                font-size: 13px;
            }
    
/* ARTICLE
--------------------------- */
.blog__article {
    margin: 0 0 80px;
}
    .blog__article p {
        font-size: 15px;
        line-height: 2;
    }
    .blog__article h2 {
        font-size  : 20px;
        font-weight: 700;
    }
    .blog__article p + h2 {
        margin-top: 57px;
    }
    .blog__article h2 + p,
    .blog__article h3 + p {
        margin-top: 16px;
    }
    .blog__article h3 {
        border-left: 3px solid #455A64;
        padding: 0 0 0 12px;
        font-size  : 18px;
        font-weight: 700;
    }
    .blog__article a {
        color: #039;
        text-decoration: none;
    }
    .blog__article a:hover {
        color: #09c;
        text-decoration: underline;
    }

/* NEXT
--------------------------- */
.next-article__ttl {
    margin: 0 0 10px;
    font-size  : 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.next-article__card {
    width: 600px;
    height: 122px;
    margin: auto;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display    : flex;
    gap        : 13px;
    align-items: center;
}
    .next-article__img {
        min-width: 160px;
        width: 160px;
        height: 90px;
    }
    .next-article__text {
        font-size  : 16px;
        font-weight: bold;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;        
    }

/* #
--------------------------- */
.blog__top-link {
    margin: 14px 0 0;
    font-size: 13px;
    color    : var(--light-text-color);
    text-align: center;
}

.clearfix:after {
    content: url(/images/clearfix.gif);
    display: block;
    clear: both;
    height: 0;
}

/* 埋め込み記事
--------------------------- */
.history_blog-img img {
    max-width: unset;
}
