@charset "utf-8";

/* ============================================================================
 * File: assets/css/page-about.css
 * Role: AceGroup Recruitとは ページ専用スタイル
 * ========================================================================== */

/* ===== ページヒーロー ===== */
.about-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 120px 20px 80px;
  text-align: center;
}
.about-hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.05em; }
.about-hero p { font-size: 1rem; opacity: 0.8; }

/* ===== 代表メッセージ ===== */
.section-message {
  padding: 100px 0;
  background: #fff;
}
.message-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 60px;
  align-items: center;
}
.message-img {
  flex: 1;
  position: relative;
  min-width: 300px;
}
.message-img img, .message-img video, .message-dummy-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.message-dummy-img {
  background: #f0f0f0;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-weight: 700;
  font-size: 1.2rem;
  border: 1px solid #ddd;
}

.message-img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--theme-accent);
  border-left: 4px solid var(--theme-accent);
  z-index: 0;
}
.message-img img, .message-img video, .message-dummy-img {
  position: relative;
  z-index: 1;
}

.message-content {
  flex: 1;
}
.message-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--color-text);
  letter-spacing: 0.05em;
}
.message-text {
  font-size: 1rem;
  line-height: 2;
  color: #555;
  margin-bottom: 30px;
}
.message-text p { margin-bottom: 1.5em; }
.message-name {
  text-align: right;
  font-weight: 700;
  font-size: 1.1rem;
}
.message-position {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 4px;
  font-weight: normal;
}

/* ===== ENVIRONMENT & VALUES ===== */
.section-values {
  background: var(--color-bg-light);
  padding: 100px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 24px;
}
.value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}
.value-card:hover {  transform: translateY(-5px); }
.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-accent);
}
.value-icon svg { width: 100%; height: 100%; fill: currentColor; }
.value-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-text);
}
.value-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}

/* ===== COMPANY ===== */
.section-company {
  padding: 100px 0;
  background: #fff;
}
.company-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
.company-table th, .company-table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.company-table th {
  width: 30%;
  font-weight: 700;
  color: var(--color-text);
  background: #fafafa;
}
.company-table td { color: #555; }

@media (max-width: 768px) {
  .message-container { flex-direction: column; gap: 40px; }
  .message-img { width: 100%; max-width: 400px; min-width: auto; }
  .message-dummy-img { aspect-ratio: 3/4; }
  .message-title { font-size: 1.5rem; text-align: center; }
  .message-text { text-align: justify; }
  .values-grid { grid-template-columns: 1fr; }
  .company-table th, .company-table td { display: block; width: 100%; }
  .company-table th { background: transparent; padding-bottom: 5px; border-bottom: none; }
  .company-table td { padding-top: 0; padding-bottom: 20px; }
  .value-card { padding: 30px 20px; }
}
