.Article {
}
.Article p + p {
  margin-top: 15px;
}

/* Link
-----------------------------------------*/
.Link,.Link:visited,.Link:link {
  color: #000;
  position: relative;
  padding-left: 15px;
  display: inline-block;
  padding-left: 15px;
}
.Link::after {
  position: absolute;
  top: -1px;
  left: 3px;
  content: " \f0da";
  font-family: FontAwesome;
}

/* Title
-----------------------------------------*/
.Title01 {
  padding: 18px 12px 14px 12px;
  font-size: 20px;
  line-height: 1.3;
  background: #f6f4ed;
  border-radius:8px;
}
.Title02 {
  font-size: 24px;
  border-bottom: solid 3px #e7e7e7;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .Title02 {
    font-size: 18px;
  }
}


/* IndexBox
-----------------------------------------*/
.IndexBox {
  background-color: #F1F1F1;
  border-top: 3px solid #666666;
  padding: 30px 40px 40px 40px;
}
.IndexBox__head {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.IndexBox__list {

}
.IndexBox__item {
  margin: 0 0 5px 0;
  text-indent: -1em;
  padding: 0 0 0 1em;
  font-weight: bold;
  vertical-align: middle;
  cursor: pointer;
}
.IndexBox__item a,
.IndexBox__item a:visited,
.IndexBox__item a:link {
  color: #000;
  text-decoration: none;
}
.IndexBox__item:hover {
  text-decoration: underline;
}
.IndexBox__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #999999;
  border-radius: 50%;
  margin-right: 6px;
}

/* ArticleItem
-----------------------------------------*/
.ArticleItem {
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ArticleItem {
    flex-direction: column;
  }
}
.ArticleItem + .ArticleItem {
  margin-top: 40px;
  border-top: 1px solid #E7E7E7;
  padding-top: 40px;
}
.ArticleItem__thumb a:hover {
  opacity: .8;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ArticleItem__thumb img {
    width: 100%;
  }
}
.ArticleItem__title {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: solid 1px #a8a8a8;
}
.ArticleItem__title a,
.ArticleItem__title a:link,
.ArticleItem__title a:visited {
  text-decoration: none;
  color: #333;
}
.ArticleItem__title a:hover {
  text-decoration: underline;
}
.ArticleItem__text {
  font-size: 14px;
}

/* Caution
-----------------------------------------*/
.Caution {

}
.Caution__item {
  font-size: 13px;
  margin: 0 0 5px 0;
  text-indent: -1em;
  padding: 0 0 0 1em;
}