/*
Theme Name: psimple
*/

@charset "UTF-8";
/** お知らせ一覧 **/
#news h1{
    font-size: 3.0rem;
    text-align: center;
    margin-bottom: 30px;
}

#news h1 span{
    border-bottom: 3px solid #00591c;
    display: inline-block;
    padding-bottom: 6px;
}

#news .news__box{
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #000000;
}

#news .news-date{
    font-size: 1.4rem;
}

#news .news__box::after{
    content: '';
    position: absolute;
    background-image: url(./../img/top/news-arrow.png);
    width: 24px;
    height: 24px;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 768px){
    #news h1{
        font-size: 2.0rem;
    }

    #news .dp-flex{
        flex-direction: column;    
    }
          
    #news .news__box::after{
        width: 18px;
        height: 18px;
    }
}

/** お知らせ **/
#single .single-post{
    margin-top: 200px;
}

#single h1{
    font-size: 3.0rem;
    margin: 20px 0;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
}

#single .news-text{
    font-size: 2.0rem;
}

#single .list__box{
    margin: 20px 0;
    flex-wrap: nowrap;
}

#single .left__box{
    width: 26px;
    margin-right: 20px;
}

#single .right__box{
    align-self: center;
    margin-bottom: 6px;
    width: calc(100% - 50px);
}

#single .right__box a{
    color: #036eb8;
    font-size: 1.8rem;
    border-bottom: 1px solid #036eb8;
}

@media screen and (max-width: 768px){
    #single h1{
        font-size: 2.0rem;
    }

    #single .news-text{
        font-size: 1.6rem;
    }

    #single .right__box a{
        font-size: 1.6rem;
    }
}