@charset "euc-jp";

/*

    ニュースページ用スタイル
    
    【対象ページ】
      ・ニュース一覧
      ・ニュース詳細
   
*/

/* ----------------------------------------------------------
    ベース、汎用
------------------------------------------------------------- */


/* Tab */
@media only screen and (min-width: 768px) and (max-width: 999px) {
    
}

/* SP */
@media only screen and (min-width: 0) and (max-width: 767px) {
    
    
}

/* ----------------------------------------------------------
    ニュース一覧
------------------------------------------------------------- */

.news {}

.newsList {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 14p;
    border-bottom: 1px dotted #ccc;
}

.newsList__date {
    position: relative;
    float: left;
    width: 105px;
    margin-left: 20px;
    color: #113d6b;
}

.newsList__date:after {
    content: '';
    position: absolute;
    top: .3em;
    left: -1.1em;
    display: block;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border: 3px solid #113d6b;
    border-radius: 100%;
}

.newsList__item {
    padding: 0 0 0 125px;
    font-size: 14px;
}
.newsList__item > ul > li {
    margin-bottom: 5px;
}
.newsList__item > ul > li:last-child {
    margin-bottom: 0;
}

/* SP */
@media only screen and (min-width: 0) and (max-width: 767px) {
    
    .newsList__date {
        float: none;
        margin-bottom: 5px;
    }
    
    .newsList__item {
        margin: 0 0 0 20px;
        padding: 0 0 0 0;
    }
}

/* ----------------------------------------------------------
    ニュース詳細
------------------------------------------------------------- */

.contHeader__newsDate {
    display: block;
    width: 105px;
    margin-bottom: 5px;
    padding: 2px 0;
    font-weight: bold;
    letter-spacing: .05em;
    color: #d2dde7;
    text-align: center;
    border: 1px solid #466b91;
}

.socialBtn {
    margin-bottom: 30px;
    line-height: 1.2;
}
.socialBtn__item {
    display: inline-block;
    margin-left: 10px;
    vertical-align: top;
}
.socialBtn__item:first-child { margin-left: 0; }


