/* ==========================================================================
   about-styles.css — About専用スタイル（重複除去済み）
   ※ base.css、components.css、animations.css に含まれる共通スタイルは削除
   ========================================================================== */

/* ===== 会社情報ページ専用スタイル ===== */
.message-section {
  background: var(--background-white);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.message-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.ceo-photo {
  width: 180px;
  height: 220px;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.message-content h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.message-content p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.ceo-signature {
  text-align: right;
  margin-top: var(--spacing-xl);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
}

.info-card {
  background: var(--background-white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.info-card-icon {
  font-size: 1.5rem;
}

.info-table {
  width: 100%;
}

.info-table tr {
  border-bottom: 1px solid var(--border-gray);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table th,
.info-table td {
  padding: var(--spacing-md) 0;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 120px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--font-size-sm);
}

.info-table td {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* ===== チームメンバー表示（About独自） ===== */
.team-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.member-card {
  background-color: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-6px);
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5rem;
  color: #1f2937;
}

.member-role {
  font-size: 1rem;
  color: #3b82f6;
  text-align: center;
  margin: 0.2rem 0 1rem;
}
.member-description{
  margin-bottom: 30px;
}
.member-description ul{
  text-align: left;
  font-size: 0.80rem;
  list-style:circle;
}

p.member-description {
  font-size: 0.95rem;
  text-align: center;
  color: #4b5563;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}

.member-skills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== バリューセクション（About独自） ===== */
.values-section {
  background: var(--background-gray-50);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
}

.value-card {
  background: var(--background-white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto var(--spacing-lg) auto;
  box-shadow: var(--shadow-sm);
}

.value-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.value-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== 会社概要セクション（About独自） ===== */
.section.features {
  background-color: #ffffff;
  padding: 4rem 1rem 2rem;
}

.feature-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  text-align: left;
}

.feature-list li {
  margin-bottom: 1rem;
  list-style-type: none;
}

.feature-list li strong {
  display: inline-block;
  width: 140px;
  color: #1d4ed8;
}

.feature-list li ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
}

.feature-list ul li {
  list-style-type: none;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

/* ===== サポート体制セクション（About独自） ===== */
#support {
  background-color: #fff;
  padding: 60px 20px 20px 20px;
  text-align: center;
}

.support-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* サポートチーム紹介 */
.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.role-badge {
  background-color: #2193bf;
  color: white;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.member-name-en {
  font-size: 12px;
  margin-bottom: 10px;
}

.avatar-placeholder {
  background-color: #e0dfe6;
  height: 100px;
  margin: 10px auto;
  width: 80%;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.member-desc {
  font-size: 12px;
  padding: 0 10px 10px;
}

.bottom-section {
  background-color: #eee;
  padding: 40px 20px;
  text-align: left;
}

.bottom-heading {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
}

.flex-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.avatar, .leader-avatar {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar img, .leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.representative-message {
  font-size: 14px;
  line-height: 2;
  max-width: 600px;
}

/* フロー表示 */
.flow-title {
  background-color: #2293bf;
  color: #fff;
  text-align: center;
  border: 1px solid #aaa;
  padding: 8px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

.flow-container {
  display: grid;
  grid-template-columns: repeat(2, 140px);
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.flow-step {
  background-color: #f2fbff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px 10px;
  font-size: 16px;
}

.flow-step::before {
  content: "➔";
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

/* ===== About独自のレスポンシブ調整 ===== */
@media (max-width: 768px) {
  .message-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
  }

  .ceo-photo {
    margin: 0 auto;
  }

  .company-info-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .member-card {
    max-width: 100%;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .feature-list li strong {
    width: 100%;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 480px) {
  .info-card {
    padding: var(--spacing-lg);
  }

  .member-card {
    padding: var(--spacing-lg);
  }

  .value-card {
    padding: var(--spacing-lg);
  }
}