/*
 * 投稿ページ専用スタイル
 * このファイルは投稿ページのみで読み込まれます
 */

/* ----------------------------------------------------------------------
 ブログ詳細ページ（投稿ページ）
---------------------------------------------------------------------- */

/* タイトルエリア */
.single #post_title {
    margin-bottom: 50px;
}
.single #post_title .category {
    color: #000;
    font-size: 14px;
    position: relative;
    margin: 0 0 10px 0px;
    display: inline-block;
    z-index: 2;
    padding: 0 8px;
}
.single #post_title .category:after {
    transition: width .2s;
    content: '';
    width: 0px;
    height: 4px;
    display: block;
    position: relative;
    left: -8px;
    z-index: -1;
    background: url(img/common/grunge_bg.png);
    background-blend-mode: color-dodge;
    filter: blur(1px);
    border-radius: 4px;
    height: 4px;
    top: -2px;
    mask-image: url(img/common/grunge_bg_shape_small.png);
}
.single #post_title .category:after {
    width: calc(100% + 16px);
}
.single #post_title .category span {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.single #post_title .category:hover span {
    opacity: 0.4;
}
.single #post_title .title {
    font-size: 24px;
    line-height: 1.5;
}
.single #post_title .meta_top {
    margin: 12px 0 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.single #post_title .meta_top li {
    font-size: 14px;
    margin: 0 15px 0 0;
}
.single #post_title .date {
    position: relative;
    color: #999;
}
.single #post_title .date:before {
    font-family: 'footer_bar';
    content: '\e912';
    font-size: 13px;
    display: inline-block;
    margin: 0 7px 0 0;
    vertical-align: -1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.single #post_title .update {
    position: relative;
    color: #999;
}
.single #post_title .update:before {
    font-family: 'design_plus';
    content: '\e943';
    font-size: 14px;
    display: inline-block;
    margin: 0 6px 0 0;
    vertical-align: -1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.single #post_image {
    width: calc(100% + 50px);
    height: auto;
    display: block;
    position: relative;
    margin: 0 -50px 50px 0;
}

/* 本文 */
.single #article .post_content {
    /* ここに本文全体のスタイルを追加できます */
}
.single .post_content a:hover {
    text-decoration: none;
}

/* WordPressプリセットスタイル（投稿本文内の要素） */
.single .post_content p {
    line-height: 2.4;
    margin: 0 0 2em 0;
}
.single .post_content h1, .post_content h2, .post_content h3, .post_content h4, .post_content h5, .post_content h6 {
    clear: both;
    line-height: 1.4;
    margin: 0 0 15px 0;
    padding: 0;
    font-weight: 600;
}
.single .post_content ul, .post_content ol {
    margin-bottom: 24px;
}

/* 目次 */
.single #tcd_toc.styled {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 40px 0 35px;
    margin-bottom: 2em;
}

/* フッターメタ情報 */
.single #post_meta_bottom {
    margin: 45px 0 0;
    padding: 15px 30px;
    background: #fff;
}
.single #post_meta_bottom li {
    display: inline;
    margin: 0 10px 0 0;
    padding: 0 15px 0 25px;
    border-right: 1px solid #ddd;
    font-size: 12px;
    line-height: 1.8;
    position: relative;
}
.single #post_meta_bottom li:last-child {
    border: none;
    margin: 0;
}
.single #post_meta_bottom li a:hover {
    color: rgba(0, 0, 0, 0.5);
}