@charset "utf-8";
/* CSS Document */
/********************************************************************
	news.css
*********************************************************************/


/*==========================================================================
	ニュースエリア
============================================================================*/
#contents .newsArea2 {
  padding: 0px;
}
#contents .newsArea2 i {
  color: #0062A9;
}
#contents .newsArea2 dl {
  border-bottom: solid 1px #CCCCCC;
  margin-bottom: 8px;
  padding-bottom: 8px;
  line-height: 1.6;
}
#contents .newsArea2 dl dt {
  width: 100%;
}
#contents .newsArea2 dl dt.news1::after {
  content: 'お知らせ';
  background-color: #0062a9;
  font-size: 10px;
  color: #FFF;
  text-align: center;
  padding: 1px 32px;
  line-height: 1;
  margin-left: 20px;
  box-sizing: border-box;
  border-radius: 3px;
  vertical-align:middle;
}
#contents .newsArea2 dl dt.news2::after {
  content: 'ニュースリリース';
  background-color: #199c69;
  font-size: 10px;
  color: #FFF;
  text-align: center;
  padding: 1px 12px;
  line-height: 1;
  margin-left: 20px;
  box-sizing: border-box;
  border-radius: 3px;
  vertical-align:middle;
}
#contents .newsArea2 dl dt.news3::after {
  content: 'ニュースレター';
  background-color: #e09f25;
  font-size: 10px;
  color: #FFF;
  text-align: center;
  padding: 1px 17px;
  line-height: 1;
  margin-left: 20px;
  box-sizing: border-box;
  border-radius: 3px;
  vertical-align:middle;
}
#contents .newsArea2 dl dd {
  width: 100%;
}
/*--- リンク ---*/
#contents .newsArea2 dl dd a:link, #contents .newsArea2 dl dd a:visited {
	color: #000;
	/* text-decoration: none; */
  text-decoration:underline;
}
#contents .newsArea2 dl dd a:hover, #contents .newsArea2 dl dd a:active {
	color: #0026A9;
	text-decoration:underline;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  #contents .newsArea2 {
    padding: 0px;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  #contents .newsArea2 dl {
    max-width: 960px;
    margin: 0px auto 8px;
    padding: 10px 0px 16px;
  }
  #contents .newsArea2 dl dt {
    width: 30%;
    float: left;
  }
  #contents .newsArea2 dl dd {
    width: 70%;
    float: right;
  }
}



/*==========================================================================
	セレクトボックス
============================================================================*/
.selectWrap{
  width: 100%;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.selectWrap::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}
.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 40px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  border: 1px solid #b4b3b3;
  border-radius: 2px;
  font-size: 16px;
}
select::-ms-expand {
    display: none;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  .selectWrap{
    width: 300px;
  }
}