@charset "UTF-8";

/*
 * style-hr.css
 * 人事メッセージページ専用スタイル
 * style-iv.css を継承し、HR固有の要素のみ定義。
 */

/* HR PROFILE SECTION */
.hr-profile-section {
  background-color: #fafafa;
}
.hr-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.hr-data-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e0e0e0;
}
.hr-data-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
}
.hr-data-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.hr-data-value {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
}
.iv-nav-btn {
  width: 300px;
  text-align: center;
  display: inline-block;
  gap: 40px;
}

/* TABLET */
@media (max-width: 1024px) {
  .hr-hero-catch {
    font-size: 2.1rem;
  }
  .hr-profile-grid {
    gap: 40px;
  }
  .hr-data-item {
    grid-template-columns: 110px 1fr;
  }
}

/* SMARTPHONE */
@media (max-width: 767px) {
  /* Hero */
  .hr-hero {
    height: auto;
    min-height: 90vh;
    align-items: flex-end;
    padding-bottom: 50px;
  }
  .hr-hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.15) 100%);
  }
  .hr-hero-content {
    width: 100%;
    padding: 0 20px;
  }
  .hr-hero-catch {
    font-size: 1.7rem;
    box-shadow: none;
    background: transparent;
  }
  .hr-hero-profile {
    max-width: 100%;
  }
  .hr-top-quote-section {
    padding: 70px 0;
  }
  .hr-top-quote .iv-quote-text {
    font-size: 1.45rem;
  }
  .hr-profile-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hr-data-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
  .hr-data-label {  
    font-size: 0.75rem;
  }
  .iv-nav-btn {
    width: 100%;
  }
}
