@charset "utf-8";
/* CSS Document */

/*==============================*/
/* News */
/*==============================*/
/*-- タイトル
------------------------- */
.newsTitle{
    display: flex; display: -webkit-flex; /* Safari */
    align-items: flex-end;-webkit-align-items: flex-end; /* Safari */
    justify-content: space-between; -webkit-justify-content: space-between; /* Safari */
    
    margin-bottom: 12px;
}
.newsTitle h2{
	font-size: 32px;
	font-weight: 600;
    font-family: 'Roboto', sans-serif; letter-spacing: 0.01em;    
    line-height: 1em;
    color: #3386C7;
}
.newsTitle h2 small{
    position: relative; top: -3px;
    margin-left: 13px;
    font-size: 16px;
    font-weight: normal;
	font-family: "Noto Sans Japanese"; letter-spacing: -0.05em;
	color: #444;
}
.newsTitle p{ position: relative; top: -1px;}
.newsTitle p a{
    font-size: 14px;
}
.newsTitle p a i{
    position: relative; top: -3px;
    margin-left: 7px;
    font-size: 22px;
    color: #224094;
}

/*-- コンテンツ
------------------------- */
#news .news{
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}

.news article{
    padding: 16px 0 12px 0;
    border-bottom: 1px dashed #ccc;
}
.news article:first-child{ border-top: 1px solid #ccc; }
.news article:last-child{ border-bottom: 1px solid #ccc; }

.news dl{
    display: flex; display: -webkit-flex; /* Safari */
    align-items: center; -webkit-align-items: center; /* Safari */
}
.news dl dt{
    margin-right: 16px;
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 1em;
    color: #444;
    font-weight: 600;
    font-family: 'Roboto', sans-serif; letter-spacing: 0.01em;
}
.news dl dt span{
    position: relative; top: 0px;
    margin-left: 16px;
    padding: 4px 24px 3px 24px;
    background: #3386C7;
    color: #fff;
    border-radius: 200px;
    font-size: 14px;
    font-weight: normal;
}
.news dl dd p{
    line-height: 1.64em;
}

    /* ======= SP =======*/
    @media (max-width: 767px) {
        #news .news{ max-width: 100%; }
        .news dl{
            flex-direction: column; -webkit-flex-direction: column; /* Safari */
            align-items: flex-start; -webkit-align-items: flex-start; /* Safari */
        }
        .news dl dt{
            margin-right: 0px;
            margin-bottom: 8px;
            font-size: 18px;
        }
        .news dl dt span{
            position: relative; top: -1px;
            margin-left: 12px;
            padding: 3px 24px 3px 24px;
            font-size: 12px;
        }
        .news dl dd{ font-size: 12px;}
    }
    
.news_img {
  margin-top: 10px;
  width: 300px;
}
@media screen and (max-width: 767px) {
  .news_img {
    display: block;
    width: 80%;
    margin: 10px auto 0;
  }
}