/* =============
 * ヒーローイメージ
 ============= */
.hero-text-area {
  position: absolute;
  right: 10%;
  top: 300px;
  text-align: left;
  color: var(--navy);
}

.hero-photo {
  object-position: center center;
}

.hero-text-area .main-text-area h1 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.hero-text-area .main-text-area h1 span {
  display: inline-block;
  width: fit-content;
  padding: 18px 4px 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  transform: skewX(-18deg);
  align-self: flex-end;
}

.hero-text-area .main-text-area h1 em {
  display: block;
  transform: skewX(18deg);
  font-style: normal;
  font-weight: 800;
  color: #26345c;
  line-height: 1;
  letter-spacing: -0.05em;
  font-size: 54px;
}

.hero-text-area .sub-text-area {
  text-align: right;
  margin-top: 10px;
  margin-right: 22px;
}

.hero-text-area .sub-text-area span {
  display: inline-block;
  padding: 8px 18px;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

/* =============
 * お知らせ
 ============= */
.news-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  column-gap: 42px;
  align-items: start;
  padding: 118px 0 116px;
}

.news-section .section-title {
  text-align: center;
  width: 100%;
}

.news-list {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 130px 74px 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.news-list time {
  color: var(--steel);
  font-weight: 700;
  text-align: center;
}

.news-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 24px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.news-list p {
  margin: 0;
  color: #58657b;
}

.news-button {
  text-align: center;
}

.common-button.pill {
  width: 136px;
  height: 48px;
  border-radius: 999px;
  gap: 18px;
  font-size: 13px;
}

.common-button.dark {
  width: 180px;
  height: 48px;
}

.center {
  text-align: center;
}

/* =============
 * 企業理念イメージ
 ============= */
.city-message {
  position: relative;
  min-height: 910px;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.city-message__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-message::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 42, 68, 0.36);
}

.city-message__content {
  position: relative;
  z-index: 1;
  width: min(680px, 80%);
  text-align: center;
}

.city-message h2 {
  margin: 0 0 34px;
  font-size: 46px;
  line-height: 1.5;
  font-weight: 900;
}

.city-message p {
  margin: 0 auto 40px;
  max-width: 700px;
  line-height: 2.1;
  font-weight: 700;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 57px;
  border: 2px solid #fff;
  font-weight: 800;
}

.outline-button:hover {
  background-color: #fff;
  color: var(--steel);
}

@media (max-width: 900px) {
  /* =============
 * ヒーローイメージ
 ============= */
  .hero-photo {
    object-position: 30% center;
  }

  .hero-text-area {
    right: 30px;
    top: 120px;
  }

  .hero-text-area .main-text-area h1 {
    gap: 10px;
  }
  .hero-text-area .sub-text-area {
    margin-right: 7px;
  }
  .hero-text-area .sub-text-area span {
    font-size: 11px;
    padding: 5px 9px;
  }

  .hero-text-area .main-text-area h1 span {
    padding: 12px 4px 12px 10px;
  }

  .hero-text-area .main-text-area h1 em {
    font-size: 27px;
  }

  /* =============
   * お知らせ
   ============= */
  .news-section {
    display: block;
  }

  .news-section .section-title {
    width: fit-content;
  }

  .news-section .section-title h2::after {
    width: 50px;
  }

  .news-list {
    margin-top: 34px;
  }

  .news-list article {
    grid-template-columns: 100px 74px 1fr;
  }

  /* =============
 * 企業理念イメージ
 ============= */
  .news-button {
    margin-top: 30px;
  }

  .city-message h2 {
    font-size: 35px;
  }

  .city-message {
    min-height: 620px;
  }
}

@media (max-width: 370px) {
  /* =============
 * ヒーローイメージ
 ============= */
  .hero-photo,
  .hero-area > img {
    height: 800px;
  }

  .hero-text-area .main-text-area h1 em {
    font-size: 22px;
  }

  .hero-text-area .sub-text-area {
    margin-top: 0px;
  }

  /* =============
 * 企業理念イメージ
 ============= */
  .city-message h2 {
    font-size: 28px;
  }

  .city-message p {
    font-size: 14px;
  }
}
