@charset "UTF-8";
/* ::::::::::  インフォメーション  :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* =========================================================
information
========================================================= */
.informationList .listItem a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #BBBAB8;
  height: 95px;
}
@media (max-width: 767px) {
  .informationList .listItem a {
    display: block;
    height: auto;
    padding-block: 20px;
  }
}
.informationList .listItem a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: #A72A2E;
  transition: all 0.7s ease-in-out;
}
@media (any-hover: hover) {
  .informationList .listItem a:hover::before {
    width: 100%;
  }
}
.informationList .listItem a .date {
  flex-shrink: 0;
  color: #666666;
}
.informationList .listItem a .title {
  width: calc(100% - 40px - 5em);
}
@media (min-width: 768px) {
  .informationList .listItem a .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .informationList .listItem a .title {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/* =========================================================
informationDetail
========================================================= *//*# sourceMappingURL=information_new.css.map */