/* ============================================================
   about.css — 会社情報ページ専用スタイル
   ============================================================ */

/* ---------- Message ---------- */
.message-section {
  background: var(--white) !important;
}

.message-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.message-profile {
  text-align: center;
}

.profile-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 4rem;
  box-shadow: 0 8px 30px rgba(249,109,0,0.3);
}

.profile-title {
  font-size: 0.8rem;
  color: var(--gray-mid);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.profile-name-en {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 0.5rem;
}

.profile-company {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
}

.message-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--black);
  font-weight: 700;
  border-left: 4px solid var(--orange);
  padding: 1rem 1.5rem;
  background: rgba(249,109,0,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
}

.message-text p {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--gray-dk);
  margin-bottom: 1rem;
}

.message-text strong {
  color: var(--orange);
  font-weight: 700;
}

.message-list {
  margin: 1rem 0 1.5rem;
  padding: 1.5rem;
  background: var(--gray-lt);
  border-radius: var(--radius);
}

.message-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--gray-dk);
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.message-list li:last-child {
  border-bottom: none;
}

.message-list li i {
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.message-sign {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9rem;
  color: var(--gray-dk);
  line-height: 1.8;
}

/* ---------- VMV ---------- */
.vmv-section {
  background: var(--gray-lt) !important;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.vmv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.vmv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vmv-card-center {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  box-shadow: 0 8px 30px rgba(249,109,0,0.3);
}

.vmv-card-center h3,
.vmv-card-center p,
.vmv-card-center .vmv-en {
  color: var(--white);
}

.vmv-card-center .vmv-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.vmv-en {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.vmv-icon {
  width: 64px;
  height: 64px;
  background: rgba(249,109,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
}

.vmv-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.vmv-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
}

.vmv-card-center p {
  color: rgba(255,255,255,0.85);
}

.vmv-list {
  text-align: left;
  margin-top: 0.5rem;
}

.vmv-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #555;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.vmv-list li:last-child {
  border-bottom: none;
}

.vmv-list li i {
  font-size: 0.5rem;
  color: var(--orange);
  flex-shrink: 0;
}

/* ---------- Company Table ---------- */
.company-section {
  background: var(--white) !important;
}

.company-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  vertical-align: top;
  line-height: 1.8;
}

.company-table th {
  background: var(--gray-lt);
  font-weight: 600;
  color: var(--gray-dk);
  width: 180px;
  white-space: nowrap;
  border-right: 2px solid var(--orange);
}

.company-table td {
  background: var(--white);
  color: var(--gray-dk);
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table td a {
  color: var(--orange);
}

.company-en {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

/* ---------- Map ---------- */
.map-section {
  background: var(--gray-lt) !important;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  display: block;
}

.map-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-dk);
}

.map-info i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.map-access {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-top: 0.3rem;
}

/* ---------- CTA ---------- */
.about-cta-section {
  background: var(--white) !important;
  text-align: center;
}

.about-cta-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  color: var(--black);
}

.about-cta-section p {
  color: var(--gray-mid);
  font-size: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .message-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .message-profile {
    max-width: 300px;
    margin: 0 auto;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .company-table th {
    width: 110px;
    font-size: 0.85rem;
    padding: 1rem;
  }
  .company-table td {
    font-size: 0.85rem;
    padding: 1rem;
  }
}