@charset "UTF-8";

/* news  ============================================================ */

/* news 一覧 

newsList:ニュースページ用
news_list:トップページ用の小さい一覧。

*/

.news_list,
.newsList {
  font-size: 18px;
  font-weight: bold;
}

.news_list_item, 
.newsList_item {
  margin: 30px 0 0;
  overflow: hidden;/* clearfix */
}

.news_list_item {
  margin: 15px 0 0;
}

.news_list_item:first-child, 
.newsList_item:first-child {
  margin: 0;
}

.news_list_link, 
.newsList_link {
  color: inherit;
  text-decoration: none;
  overflow: hidden;/* clearfix */
}

.news_list_link:hover, 
.newsList_link:hover {
  text-decoration: underline;
}

.news_list_date,
.news_list_text,
.newsList_date,
.newsList_text {
  display: block;
  line-height: 1.6;
}

.news_list_date,
.newsList_date {
  float: left;
  /* margin-right: 40px; */
  width: 7em;
}

.news_list_text,
.newsList_text {
  overflow: hidden;
}

/* sns */

.newsDetailSns {
  margin: 14px 0;
  vertical-align: top;
}

.newsDetailSns img {
  height: 20px !important;
  display: inline-block;
  vertical-align: top;
}

@media print, screen and (max-width: 768px) {
    
}

@media print, screen and (max-width: 640px) {
  .news_list,
  .newsList {
    font-size: 16px;
  }
}

@media print, screen and (max-width: 480px) {
  .news_list,
  .newsList {
    font-size: 14px;
  }
}

/* end news */

/* detail  ============================================================ */

.newsDetail_title {
    color: #e2609f;
    font-size: 27px;
    padding: 0 0 .8em;
    line-height: 1.4;
    border-bottom: 1px solid #e2609f;
}

.newsDetail_date {
    display: block;
    font-size: 18px;
    margin: 0 0 .3em;
}

.newsDetail_body {
    margin: 40px 0;
}

@media print, screen and (max-width: 768px) {
    
}

@media print, screen and (max-width: 640px) {
  .newsDetail_title {
    font-size: 21px;
  }

  .newsDetail_date {
      font-size: 16px;
  }

  .newsDetail_body {
    margin: calc( 20 / 375 * 100vw ) 0;
  }
}

@media print, screen and (max-width: 480px) {
  .newsDetail_title {
    font-size: 18px;
  }

  .newsDetail_date {
      font-size: 14px;
  }
}

/* end detail */