@charset "UTF-8";

/* ==========================================================
   TEXT CONTENT STYLES (News, Info, Articles)
   ========================================================== */

/* ----------------------------------------------------------
   Common Layout
   ---------------------------------------------------------- */
.text_cts--wrap {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    position: relative;
}
.text_cts--img {
    width: calc(100% - 650px);
    margin: 0 0 0 40px;
    position: relative;
}
.text_cts--img img {
    height: auto;
}

/* 固定サイドバー画像（PC用） */
.text_cts--img--fixed {
    /* 必要に応じてJS等で制御されるクラス */
}
.text_cts--img--fixed .img { margin-bottom: 1em; }
.text_cts--img--fixed .tex_area .tit { font-size: 1.1em; font-weight: 600; }

.text_cts--img--fixed.add {
    position: fixed;
    width: 350px;
    top: 50px;
}

/* コンテンツエリア */
.text_cts--inner {
    width: 610px;
    margin: 0;
    padding: 0;
}
.text_cts--inner .tit {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.6;
}
.text_cts--inner .ulike {
    margin-bottom: 40px;
}

/* ----------------------------------------------------------
   記事一覧 (List Page)
   ---------------------------------------------------------- */
.text_cts--inner .text-cts--list {
    position: relative;
}
.text_cts--inner .text-cts--list a {
    display: block;
    padding: 1em;
    border-bottom: 1px solid #ccc;
    transition: ease-in-out .2s;
    color: #000;
    text-decoration: none;
}
.text_cts--inner .text-cts--list a:hover {
    opacity: .567;
}
.text_cts--inner .text-cts--list a .date {
    font-size: .9em;
}
.text_cts--inner .text-cts--list a .tit {
    font-size: 1.2em;
    width: calc(100% - 4em);
}
.text-cts--list-ulike {
    position: absolute;
    right: 0;
    bottom: 0.9em;
    z-index: 9;
}
/* 一覧リスト内のLikeボタン調整 */
.text-cts--list-ulike .ulike {
    margin-bottom: 0;
}

/* ----------------------------------------------------------
   記事詳細 (Detail Page)
   ---------------------------------------------------------- */
.text_cts--inner .tex {
    font-size: 18px;
    line-height: 2em;
    letter-spacing: 0;
    font-feature-settings: normal;
}
.text_cts--inner .tex p {
    margin-bottom: 2em;
    word-break: break-all;
}
.text_cts--inner .tex p a {
    color: rgb(0, 0, 0);
    word-break: break-all;
    text-decoration: underline;
}
.text_cts--inner .tex p a:hover { opacity: .567; }

.text_cts--inner strong { font-weight: 600; }

/* 引用 */
.text_cts--inner .tex .wp-block-quote {
    overflow-wrap: break-word;
    font-size: .92em;
    background: #f7f9fb;
    padding: 1.3em 2em;
    border-radius: 3px;
    margin-bottom: 2em;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
}
.text_cts--inner .tex .wp-block-quote p {
    margin-bottom: 0;
}

/* 画像キャプション */
.text_cts--inner .wp-block-image figcaption {
    margin-bottom: 1em;
    margin-top: 0.8em;
    font-size: .7em;
    line-height: 1.6;
    text-align: center;
}

/* 書影用スタイル */
.wp-block-image.book {
    background: #fafafa;
    padding: 10% 32%;
}
.wp-block-image.book img {
    box-shadow: 11px 16px 6px rgba(0, 0, 0, 0.12);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------------
   NEWS / INFORMATION (42"96" Style)
   ---------------------------------------------------------- */
.text_cts--inner--news {
    position: relative;
    margin-bottom: 3em;
}
.text_cts--inner--news .tex {
    padding: 5px;
    border-bottom: 1px solid #ccc;
    margin: 0 0 3px;
    letter-spacing: 0;
}
.text_cts--inner--news .tit-date {
    text-align: right;
    font-size: 0.8em;
    opacity: .6;
    font-weight: 400;
}
.text_cts--inner--news .wpulike {
    position: absolute;
    bottom: -8px;
    z-index: 9;
}

/* NEWS内見出し・装飾 */
.text_cts--inner--news .tex h1 { margin: 0; padding: 0; font-size: 2.2em; font-weight: normal; line-height: 1.6; }
.text_cts--inner--news .tex h2 { margin: 0; padding: 0; font-size: 1.6em; font-weight: normal; line-height: 1.6; }
.text_cts--inner--news .tex h3 { margin: 0; padding: 0; font-size: 1.2em; font-weight: normal; line-height: 1.6; }
.text_cts--inner--news .tex h4 { margin: 0; padding: 0; font-size: 0.9em; font-weight: normal; line-height: 1.6; }
.text_cts--inner--news .tex h5 { margin: 0; padding: 0; font-size: 0.7em; font-weight: normal; line-height: 1.6; }
.text_cts--inner--news .tex h6 { margin: 0; padding: 0; font-size: 0.5em; font-weight: normal; line-height: 1.6; }

.text_cts--inner--news .tex p {
    margin-bottom: 1em;
    font-size: 1em;
    font-weight: normal;
    line-height: 1.6;
    min-height: 1em;
}
.text_cts--inner--news .tex strong { font-weight: bold; }
.text_cts--inner--news .tex em { opacity: .6; }


/* ----------------------------------------------------------
   Responsive Styles
   ---------------------------------------------------------- */
@media(max-width:1222px) {
    .text_cts--img--fixed.add {
        position: relative;
        width: 100%;
        top: 0;
    }
    .text_cts--img {
        width: 610px;
        margin: 0 auto 0;
        position: relative;
    }
    .text_cts--img--fixed .img {
        width: 100%;
        margin-bottom: 0em;
    }
    .text_cts--inner {
        margin: 0 auto;
    }
    .text_cts--img--fixed {
        margin: 0px 0 20px;
    }
    .text_cts--img--fixed .tex_area {
        display: none;
    }
    .text_cts--img--fixed.category_page .tex_area {
        padding: 16px 16px 0px;
        display: block;
    }
}

@media(max-width:611px) {
    .text_cts--img--fixed,
    .text_cts--img--fixed.add {
        width: 100vw;
        position: relative;
        left: 16px;
    }
}

@media(max-width:780px) {
    .text_cts--img {
        padding: 0 0 0px;
    }
    .text_cts--inner .tit {
        font-size: 1.4em;
    }
    .text_cts--inner .tex {
        font-size: 15px;
    }
    .text_cts--inner .text-cts--list a .tit {
        font-size: 1.1em;
        width: calc(100% - 5em);
    }
    .text_cts--inner .text-cts--list a {
        padding: 1em .5em;
    }
}