@charset "UTF-8";
.news {
  padding-top: 150px;
}
.news__inner {
  width: 100%;
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
.news__head {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.news__ttl {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
.news__body {
  width: 100%;
  height: auto;
}
.news__body__inner {
  width: 100%;
  height: auto;
}
.news__list {
  width: 100%;
  margin: 0 auto;
}
.news__list__item {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.news__list__item.fade-in {
  opacity: 1;
}
.news__list__item.new-item {
  pointer-events: none;
}
.news__list__item.new-item.fade-in {
  opacity: 1 !important;
  pointer-events: auto;
}
.news__list__item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.75rem;
  border-top: 1px solid #B6B6B6;
  padding: 35px 0px 35px 0px;
  gap: 27px 0;
}
.news__list__item a.bar-link {
  position: relative;
  /* ホバーアウト時は即座に消える */
}
.news__list__item a.bar-link .color-bar {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  z-index: 10;
  transition: width 0.6s ease;
}
.news__list__item a.bar-link .color-bar.bar1 {
  transition-delay: 0s;
}
.news__list__item a.bar-link .color-bar.bar2 {
  transition-delay: 0.05s;
}
.news__list__item a.bar-link .color-bar.bar3 {
  transition-delay: 0.1s;
}
.news__list__item a.bar-link .color-bar.bar4 {
  transition-delay: 0.15s;
}
.news__list__item a.bar-link .color-bar.bar5 {
  transition-delay: 0.2s;
}
.news__list__item a.bar-link .color-bar.bar6 {
  transition-delay: 0.3s;
}
.news__list__item a.bar-link:not(:hover) .color-bar {
  transition-delay: 0s;
  transition-duration: 0.2s;
}
.news__list__time {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-right: 32px;
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #000;
}
.news__list__time > .new {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  display: inline-block;
  border: 1px solid #000;
  line-height: 1.8;
  border-radius: 100%;
  padding: 0px 5px;
  margin-top: -0.1em;
  margin-left: -0.2em;
  font-size: 0.875rem;
  font-weight: 300;
}
.news__list__content {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
}
.news__list .more {
  display: block;
  text-align: right;
  color: #000;
  font-size: 0.875rem;
  margin-top: 10px;
}
.news__foot {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
@media (min-width: 640px) {
  .news {
    padding-bottom: 200px;
  }
  .news {
    padding-top: 196px;
  }
  .news__head {
    margin-bottom: 62px;
  }
  .news__ttl {
    font-size: 1rem;
  }
  .news__list__item a {
    font-size: 0.75rem;
  }
  .news__list__item a {
    flex-direction: row;
    gap: 0;
    line-height: 180%;
    border-top: 1px solid #B6B6B6;
    padding: 40px 20px 40px 0px;
  }
  .news__list__item a.bar-link .color-bar {
    height: 2px;
  }
  .news__list__time {
    font-size: 1rem;
  }
  .news__list__time > .new {
    font-size: 0.875rem;
  }
  .news__list__content {
    font-size: 1rem;
  }
  .news__list .more {
    font-size: 0.875rem;
    margin-top: 10px;
  }
  .news__foot {
    margin-top: 100px;
  }
}
@media (min-width: 1100px) {
  .news {
    padding-bottom: 200px;
  }
  .news__inner {
    max-width: 1074px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .news__ttl {
    font-size: 1rem;
  }
  .news__list__item a {
    font-size: 0.875rem;
  }
  .news__list__time {
    font-size: 1rem;
  }
  .news__list__time > .new {
    font-size: 0.875rem;
  }
  .news__list__content {
    font-size: 1rem;
  }
}
@media (max-width: 639.98px) {
  .news {
    padding-bottom: 100px;
  }
}
@media (hover: hover) {
  .news__list__item a.bar-link:hover .color-bar {
    width: 100%;
  }
}