/* CSS Document */
/* =========================================================== */
/* 共通デザイン（情報発信）                                      */
/* =========================================================== */
/* リンクボタン */
/* =========================================================== */
/* リンクボタンエリア */
/* =========================================================== */
.link-btn-bloc{
    padding: 0rem 2rem 2rem;
    width: 100%;
    margin-top: auto;
}
/* 共通 */
/* =========================================================== */
.link-btn-bloc a{
    display: block;
    color: var(--white);
    padding: 0.6rem 2rem;
    border-radius: 0.4rem;
    margin-bottom: 0.8rem;
    position: relative;
    width: 100%;
}
/* コンテンツへのリンクボタン */
/* =========================================================== */
.link-btn-bloc a.link-contents{
    background: var(--black);
    border: 1px solid var(--black);
    transition: 0.4s;
}
.link-btn-bloc a.link-contents:hover{
    background: var(--white);
    color: var(--black);
    transition: 0.4s;
}
/* リンクの矢印アイコン */
.link-btn-bloc a.link-contents::before{
    display: block;
    content: "";
    background-color: var(--white);
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%2332CD32" viewBox="0 0 16 16"><path d="M1,0.343L6.657,6,5.95,6.707,0.293,1.05ZM6.657,6L1,11.657,0.293,10.95,5.95,5.293Z"/></svg>');
    -webkit-mask-size: contain;
    mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%2332CD32" viewBox="0 0 16 16"><path d="M1,0.343L6.657,6,5.95,6.707,0.293,1.05ZM6.657,6L1,11.657,0.293,10.95,5.95,5.293Z"/></svg>');
    mask-size: contain;

    height: 12px;
    width: 12px;

    position: absolute;
    top: 54%;
    right: 0;
    transform: translate(-50%, -50%);
}
.link-btn-bloc a.link-contents:hover::before{
    background-color: var(--black);
}
/* PDFダウンロードボタン */
/* =========================================================== */
.link-btn-bloc a.link-download{
    background: var(--mid-gray);
    border: 1px solid var(--mid-gray);
    margin-bottom: 0;
    transition: 0.4s;
}
.link-btn-bloc a.link-download:hover{
    background: var(--white);
    color: var(--black);
    transition: 0.4s;
}
/* リンクのダウンロードアイコン */
.link-btn-bloc a.link-download::before{
    display: block;
    content: "";
    background-color: var(--white);
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%2332CD32" viewBox="0 0 16 16"><path d="M11.626,1.031L5.969,6.688,5.262,5.981l5.657-5.657ZM5.969,6.688L0.312,1.031l0.707-.707L6.676,5.981ZM0,10H12v1H0V10Z"/></svg>');
    -webkit-mask-size: contain;
    mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%2332CD32" viewBox="0 0 16 16"><path d="M11.626,1.031L5.969,6.688,5.262,5.981l5.657-5.657ZM5.969,6.688L0.312,1.031l0.707-.707L6.676,5.981ZM0,10H12v1H0V10Z"/></svg>');
    mask-size: contain;

    height: 12px;
    width: 12px;

    position: absolute;
    top: 54%;
    right: 2%;
    transform: translate(-50%, -50%);
}
.link-btn-bloc a:hover.link-download::before{
    background-color: var(--black);
}
/* =========================================================== */
/* 出版物　各号個別ページ                                        */
/* =========================================================== */
.publication-introduction{
    display: flex;
} 
/* 左カラム */
/* =========================================================== */
.publication-introduction .publication-summary{
    background: var(--beige);
    width: 360px;
    padding: 2rem;
    margin-right: 3rem;
}
.publication-introduction .publication-summary figure img{
    max-width: 100%;
}
/* 右カラム */
/* =========================================================== */
.publication-introduction .publication-contents{
    flex: 1;
}
.publication-introduction .publication-contents ul li{
    padding-left: 2rem;
    margin-bottom: 2rem;
}
.publication-introduction .publication-contents ul li p.cat-label{
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 0;
    margin-left: -4rem;
    border: none;
}
.publication-introduction .publication-contents ul li h4{
    margin-left: -2rem;
}
.publication-introduction ul.topics li{
    margin-bottom: 0.8rem;
}
/* リンクボタンの細かい調整 */
.publication-introduction .link-btn-bloc{
    padding-top: 2rem;
}
.publication-introduction .introduction-text{
    padding-top: 3rem;
    font-weight: bold;
}
.publication-introduction .introduction-text h2{
    border-left: none;
    padding: 0;
    color: var(--black);
    margin-bottom: 0;
}
.publication-introduction .introduction-text p{
    font-size: 1.8rem;
    font-weight: normal;
    text-indent: 0;
}
/* =========================================================== */
/* 出版物　各号個別ページ（スマホ表示）                           */
/* =========================================================== */
@media screen and (max-width: 767.98px) {
    .publication-introduction{
        flex-direction: column;
    }
    /* 左カラム */
/* =========================================================== */
    .publication-introduction .publication-summary{
        width: 100%;
        margin-bottom: 3rem;
    }
}