@charset "utf-8";
/* ------------------------------------------
  news_list
------------------------------------------ */
.header {
  background: rgba(239, 237, 234, 0.8);
}

.footer {
  background: #fff;
}

.news_list {
  padding-top: 120px;
  padding-bottom: 150px;
  margin-bottom: 100px;
  background: rgba(239, 237, 234, 0.8);
}

.news_list_container {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.news_sec_ttl {
  color: #6d352c;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 56px;
  font-family: "adobe-garamond-pro", serif;
  margin-bottom: 60px;
  font-weight: 300;
}

.news_list_inner {
  border-top: 1px solid #4b4b4b;
  margin-bottom: 100px;
}

.news_list_link {
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.news_list_link::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #4b4b4b;
  bottom: 0;
  left: 0;
}

.news_list_link::before {
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background-color: #6d352c;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 2;
}

.news_list_link:hover:before {
  left: 0;
  right: auto;
  width: 100%;
}
.news_list_link.is-open:before {
  opacity: 0;
}

.news_list_link:hover {
  opacity: 1;
}

.news_list_link:hover * {
  opacity: 1;
}

.news_flex_item1 {
  display: flex;
  align-items: center;
}

.news_date {
  font-size: 14px;
  color: #4b4b4b;
  margin-right: 70px;
  font-family: "Klee One", cursive;
  line-height: 24px;
}

.news_ttl {
  font-size: 16px;
  line-height: 27px;
  color: #4b4b4b;
  font-family: "Klee One", cursive;
  margin-right: 30px;
}

.news_flex_item2 {
  width: 34px;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.news_list_item:hover .news_arrow {
  /* ホバー時のアニメーション */
  animation: slideInFromLeft 0.5s forwards;
}

.pagetop_pc {
  opacity: 1;
}

@media screen and (max-width: 430px) {
  .news_list {
    padding-bottom: 55px;
  }

  .news_list_container {
    max-width: 86.5%;
  }

  .news_sec_ttl {
    margin-bottom: 30px;
  }

  .news_list_link {
    padding: 30px 10px 30px 37px;
  }

  .news_flex_item1 {
    display: block;
  }

  .news_date {
    margin-bottom: 10px;
  }

  .news_flex_item2 {
    width: 26px;
  }
}
