@charset "utf-8";

.article__ContainerA,
.article__ContainerB {
  font-family: Arial;
  color: #484848;
}
.article__ContainerA {
  margin-bottom: 64px;
}
.article__ContainerB {
  margin-bottom: 80px;
}
.article__Title {
  font-size: 28px;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 40px;
}
.js-article__List li.hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  display: none;
}
.article__ListSet {
  display: flex;
  gap: 84px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ddd;
  padding: 15px 0 16px;
}
.article__ListSet > .Date,
.article__ListSet > .Title {
  line-height: 1.5;
}
.article__ListSet > .Title br {
  display: none;
}
.article__ListSet .Date {
  padding-left: 16px;
  white-space: nowrap;
}
.article__ListButton {
  width: fit-content;
  padding: 9px 30px;
  border: 1px solid #090204;
  margin: 0 auto;
  cursor: pointer;
  line-height: 1;
}
.article__ListButton button {
  width: fit-content;
  background-color: transparent;
  border: none;
  padding: 0;
}
.article__ListButton button::after {
  content: "";
  display: inline-block;
  color: #333;
  width: 0.7em;
  height: 0.7em;
  border: 0.1em solid currentColor;
    transform: translateY(-25%) rotate(135deg);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-left: 6px;
}
.article__ListButton.R button::after {
    transform: translateY(-25%) rotate(46deg);
    vertical-align: middle;
}

/* 段落 */
.u_mb20 {
  margin-bottom: 20px;
}

/* 画像 */
.article__Img img {
  display: block;
  margin: 40px auto;
}

@media screen and (max-width:540px) {
  .article__ContainerA,
  .article__ContainerB {
    margin-bottom: 34px;
  }
  .article__ListSet .Date {
    padding-left: 10px;
  }
  .article__ListSet .Title {
    padding-right: 10px;
  }
  .article__Title {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .article__ListSet {
    gap: 20px;
  }
}