/* ----------------------------------------------------------
General Settings
---------------------------------------------------------- */



/* ----------------------------------------------------------
Style for PCs
---------------------------------------------------------- */
@media screen and (min-width: 1025px) {

.newslist {
  width:100%;
  max-width:1600px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  margin:0 auto;
}
.newslist dt {
  width:15%;
  height: auto;
  display: block;
  font-size:14px;
  font-weight: 400;
  line-height: 1.5em;
  color:var(--color-1st);
  padding:20px 10px;
  border-bottom: 1px dotted var(--color-ccc);
}
.newslist dd {
  width:85%;
  height: auto;
  display: block;
  font-size:14px;
  font-weight: 400;
  line-height: 1.5em;
  padding:20px 10px;
  border-bottom: 1px dotted var(--color-ccc);
}
.newslist dd a {
  width:100%;
  height: auto;
  display: block;
  text-decoration: none;
  color: var(--color-black);
}
.newslist dd a:hover {
  color:var(--color-1st);
  text-decoration: underline;
}

}

/* ----------------------------------------------------------
Style for iPad Pro
---------------------------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {

.newslist {
  width:100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  margin:0 auto;
}
.newslist dt {
  width:15%;
  height: auto;
  display: block;
  font-size:14px;
  font-weight: 400;
  line-height: 1.5em;
  color:var(--color-1st);
  padding:20px 10px;
  border-bottom: 1px dotted var(--color-ccc);
}
.newslist dd {
  width:85%;
  height: auto;
  display: block;
  font-size:14px;
  font-weight: 400;
  line-height: 1.5em;
  padding:20px 10px;
  border-bottom: 1px dotted var(--color-ccc);
}
.newslist dd a {
  width:100%;
  height: auto;
  display: block;
  text-decoration: none;
  color: var(--color-black);
}
.newslist dd a:hover {
  color:var(--color-1st);
  text-decoration: underline;
}

}

/* ----------------------------------------------------------
Style for Smartphone
---------------------------------------------------------- */
@media screen and (max-width: 768px) {

  .newslist {
  width:100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin:0 auto;
}
.newslist dt {
  width:100%;
  height: auto;
  display: block;
  font-size:12px;
  font-weight: 400;
  line-height: 1.5em;
  color:var(--color-1st);
  padding:0px 5px 8px;
}
.newslist dd {
  width:100%;
  height: auto;
  display: block;
  font-size:14px;
  font-weight: 400;
  line-height: 1.5em;
  padding:0px 5px 20px;
  border-bottom: 1px dotted var(--color-ccc);
  margin-bottom: 20px;
}
.newslist dd a {
  width:100%;
  height: auto;
  display: block;
  text-decoration: none;
  color: var(--color-black);
}
.newslist dd a:hover {
  color:var(--color-1st);
  text-decoration: underline;
}

}
