@charset "UTF-8";

/* print.html, print_img.html用のCSS */
#printout_view {
    display: block;
}

body {
    padding: 10mm 10mm 18mm;
    position: relative;
}

.printout_header {
    margin-bottom: 10mm;
}

.printout_header h2.printout_header_title {
    font-size: 14pt;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 2mm;
}

.printout_header .printout_header_info {
    display: flex;
    justify-content: space-between;
    font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'Osaka', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 9pt;
    line-height: 1.4;
}

#print_articles {
    padding-left: 24px;
    background-image: url("../img/printer.svg");
    background-size: 17px 14px;
    background-repeat: no-repeat;
    background-position: left 3px center;
    background-color: transparent;
    color: #1083c2;
    cursor: pointer;
    vertical-align: middle;
}

@media print {
    #print_articles {
        display: none;
    }
}

.printout_article {
    font-size: 10pt;
    line-height: 14pt;
    column-gap: 12mm;
    position: relative;
    padding-bottom: 10mm;
}

.printout_article p {
    margin-bottom: 8pt;
}

.printout_image {
    text-align: left;
}

.printout_image img {
    max-width: 180mm;
    max-height: 185mm;
}

.printout_article_credit {
    font-size: 10px;
    margin-top: 10mm;
}
