@charset "utf-8";
/***** mv *****/
.p-top-mv {
  background-color: var(--base-color);
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  border-radius: 5px;
}
.p-top-mv__inner {
  width: 45%;
  padding: 3rem 0 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.p-top-mv__date, .p-top-mv__member {
  width: 80%;
}
.p-top-mv__fig {
  width: 55%;
}
.p-top-mv__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 5px 5px 0;
}
@media screen and (max-width:768px) {
  .p-top-mv {
    flex-direction: column-reverse;
    margin-top: 60px;
    gap: 0;
    border-radius: 0;
  }
  .p-top-mv__inner, .p-top-mv__fig {
    width: 100%;
  }
  .p-top-mv__inner {
    padding: 2.5rem;
    gap: 1.6rem;
  }
  .p-top-mv__date, .p-top-mv__member {
    width: 80%;
  }
}
/***** news *****/
.p-top-news {
  margin-block: 3rem;
  padding: 3rem;
  background-color: #fff;
  border-radius: 5px;
}
.p-top-news__ttl {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.08em;
  color: var(--base-color);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--base-color);
  position: relative;
}
.p-top-news__ttl::after {
  content: '';
  position: absolute;
  bottom: 5px;
  right: 0;
  display: block;
  width: 110px;
  height: 100%;
  background: url("../images/news_bird.png") no-repeat center right / contain;
}
.p-top-news__box {
  height: 200px;
  overflow-y: scroll;
}
.p-top-news__item {
  display: flex;
  gap: 3rem;
  border-bottom: 1px dotted var(--black-color);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width:768px) {
  .p-top-news {
    margin: 1.5rem;
    padding: 1.5rem;
  }
  .p-top-news__ttl {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .p-top-news__ttl::after {
    width: 70px;
  }
  .p-top-news__item {
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}