@charset "utf-8";
/* レイアウトのためのCSS */

/* beans_pdf */

#beans_pdf{
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
    margin:0 0 100px 0;
}

@media screen and (max-width:768px) {
    #beans_pdf{
        margin:0 0 50px 0;
    }
    
}

#beans_pdf .img{
    width:45%;
    min-height: 300px;
    background:url("../img/header_pic.jpg") no-repeat center;
    background-size: cover;
}

#beans_pdf .content{
   width:50%; 
    text-align: left;
}

@media screen and (max-width:768px) {
  #beans_pdf .img{
    width:100%;
    min-height: 290px;
      margin:0 0 50px 0;
}

#beans_pdf .content{
   width:100%; 
    text-align: left;
}  
}

#beans_pdf h2{
    color:#d71e23;
    margin:0 0 30px 0;
}

#beans_pdf p{
    line-height: 2;
    margin: 0 0 50px 0;
}

#beans_pdf .beans_pdf-lead{
    position: relative;
    color:#d71e23;
    font-size:1.3rem;
    font-weight: bold;
    margin: 0 0 90px 0;
}

@media screen and (max-width:768px) {
#beans_pdf .beans_pdf-lead{
    font-size:1rem;
    }
    
}

#beans_pdf .beans_pdf-lead::after{
     content:'';
    position: absolute;
    bottom:-30px;
    left:0;
    background:#d71e23;
    width:12em;
    height: 3px;
}