#journal{
    display: flex;
    gap: 4%;
}

#journal .side-l{
    width: 20%;
    min-width: 200px;
}
#journal .side-l img{
    width: 100%;
    height: auto;
}

#journal .side-r{
    width: 76%;
    font-size: 16px;
    line-height: 175%;
}
#journal .side-r h2{
    counter-increment: section;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    color: #285FBB;
    padding-bottom: 16px;
    border-bottom: 1px solid #285FBB;
    margin-bottom: 16px;
}
#journal .side-r .img img{
    margin: 20px 0;
    border: 1px #cccccc solid;
    width: 100%;
    height: auto;
}

#journal .side-r .img p{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 3px;
}
#journal .side-r .img a{
    display: inline-block;
    width: auto;
}
#journal .side-r .img > a{
    max-width: 280px;
}
#journal .side-r .img p + p{
    margin-top: 5px;
}
#journal .side-r .img p:before{
    content: "▶";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 1.2em;
    height: 100%;
    background: #fff;
    color: #285FBB;
    font-size: 85%;
}

#journal .side-r .img p .pdf{
    text-indent: -9999px;
    overflow: hidden;
    display: inline-block;
    background: url(../../images/icon_pdf.svg) center center no-repeat;
    width: 1.2em;
    margin-left: 5px;
}


#journal span.coution {
  color: #D4143A;
  display: block;
  width: 100%;
  padding-left: 2em;
  text-indent: -1em;
  line-height: 1.4em;
  margin-top: 0.2em;
}

@media screen and (max-width: 767.5px) {
    #journal{
        flex-direction: column;
        gap: 30px;
    }
    #journal .side-l{
        margin: 0 auto;
    }
    #journal .side-r{
        width: 100%;
        font-size: 14px;
    }

    #journal .side-r .img > a{
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    #journal .side-r h2{
        font-size: 22px;
    }
}