@charset "UTF-8";
/* 共通
======================================= */
/* a-news
======================================= */
.a-news__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  padding: 1.125em 0;
  border-bottom: 1px solid #D5D5D5;
  position: relative;
}
@media (max-width: 768px) {
  .a-news__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.a-news__item a:hover .a-news__item-title {
  text-decoration: underline;
  color: #1C2C6F;
}
.a-news__item-info {
  width: 10%;
  min-width: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .a-news__item-info {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
.a-news__item-info--date, .a-news__item-info--cat {
  display: block;
}
.a-news__item-info--date {
  font-weight: bold;
}
.a-news__item-title {
  width: 90%;
  text-align: left;
}
@media (max-width: 768px) {
  .a-news__item-title {
    width: 100%;
  }
}

/* a-people
======================================= */
.a-people__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .a-people__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 4%;
  }
}

/* a-movies
======================================= */
.a-movies__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4em 5%;
  margin-bottom: 4em;
}
@media (max-width: 768px) {
  .a-movies__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.a-movies .more_btn {
  font-family: "源真ゴシックP";
  font-weight: bold;
  color: #1C2C6F;
  display: block;
  padding-bottom: 2em;
  margin: 4em auto;
  position: relative;
}
.a-movies .more_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 1em;
  height: 1em;
  border-right: 2px solid #1C2C6F;
  border-bottom: 2px solid #1C2C6F;
}
.a-movies__btn {
  margin-top: 6em;
}