@charset "UTF-8";

/* ========================================
lower fv
======================================== */

.lower-fv {
  position: relative;
  min-height: 500px;
  padding-top: 150px;
  background: url("../img/paper-bg.png") repeat center top / 900px auto;
  overflow: hidden;
}

.lower-fv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  width: 100%;
  height: 240px;
  background: #f3eee9;
  clip-path: polygon(
    0 62%,
    6% 50%,
    14% 48%,
    22% 42%,
    30% 28%,
    38% 20%,
    46% 34%,
    54% 35%,
    62% 18%,
    72% 16%,
    82% 28%,
    91% 20%,
    100% 31%,
    100% 100%,
    0 100%
  );
}

.lower-fv__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lower-fv__inner h1 {
  margin: 0;
  color: #81756e;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: .24em;
}

.lower-fv__inner p {
  margin-top: 20px;
  color: #81756e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
}

.lower-fv__bird {
  right: 8%;
  bottom: 150px;
  width: clamp(90px, 9vw, 150px);
  z-index: 3;
}

/* ========================================
breadcrumb
======================================== */

.breadcrumb {
  background: #f3eee9;
  padding: 28px 0 80px;
}

.breadcrumb__inner {
  width: min(100% - 80px, 1320px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #81756e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
}
.breadcrumb__inner a {
  transition: .3s ease;
}

.breadcrumb__inner a:hover {
  opacity: .6;
}


.news-list-page {
  padding: 100px 0 0;
  background: #f3eee9;
}

.news-list-page__inner {
  width: min(100% - 120px, 1500px);
  margin: 0 auto;
}

.news-list__item {
  min-height: 105px;
  border-bottom: 1px solid #2b2522;

  display: grid;
  grid-template-columns: 120px 150px 1fr 54px;
  align-items: center;
  gap: 32px;

  color: #2b2522;
}

.news-list__item time {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
}

.news-list__item span {
  padding: 10px 20px;
  border: 1px solid #2b2522;

  text-align: center;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.news-list__item p {
  margin: 0;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list__item i {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: #fff;

  display: grid;
  place-items: center;

  font-style: normal;
  font-size: 20px;
}

.news-pagination {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.news-pagination a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #2b2522;
  font-size: 14px;
  font-weight: 700;
}

.news-pagination a.is-current {
  background: #d91568;
  color: #fff;
}

/* TOPに戻る */
.about-back {
  padding: 90px 0 140px;
  background: #f3eee9;
}

.about-back__inner {
  display: flex;
  justify-content: center;
}

.about-back__button {
  letter-spacing: .18em;
}

/* SP */
@media screen and (max-width: 900px) {
  .news-list-page {
    padding: 60px 0 0;
  }

  .news-list-page__inner {
    width: calc(100% - 40px);
  }

  .news-list__item {
    min-height: auto;
    padding: 22px 0;

    grid-template-columns: 1fr 90px 40px;
    gap: 12px;
  }

  .news-list__item time {
    grid-column: 1 / 2;
    font-size: 12px;
  }

  .news-list__item span {
    grid-column: 2 / 3;
    padding: 8px 10px;
    font-size: 11px;
  }

  .news-list__item p {
    grid-column: 1 / 3;
    font-size: 13px;
    white-space: normal;
    line-height: 1.8;
  }

  .news-list__item i {
    grid-column: 3 / 4;
    grid-row: 1 / 3;

    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .news-pagination {
    margin-top: 45px;
  }

  .about-back {
    padding: 60px 0 90px;
  }
}