@import "./common.css";
@import "./header.css";
@import "./footer.css";

.wrapper .pc_nav .gnav ul li.gnav-news {
  background-size: 100% 2px;
}

.section {
  &.title {
    height: 328px;
    .h1 {
      margin-bottom: 1rem;
      font-size: 2.6rem;
      font-weight: var(--font-weight-titleJP);
    }
    .date {
      color: var(--sub-bg-color);
      font-weight: var(--font-weight-normal);
      margin-right: 0.6rem;
    }
    .category {
      margin-left: 0.6rem;
    }
  }
  .article {
    margin-bottom: 96px;
    p {
      margin-bottom: 2.4rem;
      font-size: var(--font-size-normal);
      line-height: 2.2rem;
      color: var(--sub-color);
    }
    .text-left {
      text-align: left;
    }
    .text-center {
      text-align: center;
    }
    .text-right {
      text-align: right;
    }
  }
}
.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 96px;
}
.btn.btn_circle {
  position: relative;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  font-size: var(--font-size-normal);
  color: var(--main-color);
  background-color: var(--sub-color);
  border: none;
  &:hover {
    color: var(--sub-color);
    background-color: var(--sub-bg-color);
  }

  &.btn_next {
    &::before {
      content: ">";
      font-size: 2rem;
    }
  }
  &.btn_prev {
    &::before {
      content: "<";
      font-size: 2rem;
    }
  }
}
@media (max-width: 780px) {
  .section {
    &.title {
      height: 560px;
      padding-top: 210px;
      .wrapper {
        .h1 {
          padding-top: 0;
          margin-bottom: 0px;
          img {
            width: 100%;
            height: auto;
          }
        }
      }
    }
    .article {
      img {
        width: 100%;
        height: auto;
      }
    }
  }
}
@media (max-width: 480px) {
}
