/**************************************
newsList
**************************************/
#newsSection{
  display: block;
  width: 100%;
  padding: 2rem 2.5rem 0;
  margin: 0 auto;
}

#newsSection .mainTTL {
  display: block;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}

#newsSection .newsList{
  display: block;
  width: 100%;
  padding: 0 0;
}

#newsSection .newsList > ul{
  display: block;
  width: 100%;
  margin: 0 auto;
}

#newsSection .newsList > ul > li{
  display: block;
  padding: 1.5rem;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.6;
}

#newsSection .newsList > ul > li + li{margin-top: 2rem;}


#newsSection .newsList > ul > li > time{
  display: block;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 600;
  text-align: left;
}

#newsSection .newsList > ul > li > dl{display: block;}
#newsSection .newsList > ul > li > dl > dt{
  display: block;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #D6CFD3;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4rem;
  text-align: left;
  letter-spacing: 0.1em;
}

#newsSection .newsList > ul > li > dl > dd{
  display: block;
}

#newsSection .newsList > ul > li > dl > dd a{
  color: #000000;
  text-decoration: underline;
}




