/* ABOUT PAGE */
body { background: var(--warm-white); }

/* VISION */
#vision {
  padding: 8rem 0;
  background: var(--warm-white);
}
.vision-single {
  max-width: 780px;   /* テキストの読みやすい幅 */
}
.vision-text p {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.vision-phases {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
}
.vp-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s;
}
.vp-item:last-child { border-bottom: none; }
.vp-item:hover { background: var(--cream); }
.vp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
  padding: 1rem 0;
}
.vp-body {
  padding: 1rem 1.5rem;
}
.vp-body strong {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--indigo);
  display: block;
  margin-bottom: 0.2rem;
}
.vp-body span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* VALUES */
#values {
  padding: 8rem 0;
  background: var(--indigo-deep);
  position: relative;
  overflow: hidden;
}
#values::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(44,74,124,0.35) 0%, transparent 65%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}
.value-card {
  background: rgba(13,22,41,0.85);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.value-card:hover { background: rgba(26,39,68,0.9); }
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.value-card:hover::before { transform: scaleX(1); }
.value-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(184,148,63,0.35);
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1;
  transition: color 0.35s;
}
.value-card:hover .value-en { color: rgba(212,175,90,0.55); }
.value-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  display: block;
  margin-bottom: 1rem;
}
.value-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}

/* MEMBERS */
#members {
  padding: 8rem 0;
  background: var(--cream);
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.member-card {
  background: var(--warm-white);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid transparent;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.member-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 12px 36px rgba(26,39,68,0.08);
}
.member-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo) 0%, #2c4a7c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1.3rem;
}
.member-role {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.member-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--indigo);
  display: block;
  margin-bottom: 1rem;
}
.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.mtag {
  font-size: 0.6rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  letter-spacing: 0.04em;
}
.member-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.9;
}
/* auditor card */
.member-card.auditor { border-left: 2px solid rgba(29,107,90,0.3); }
.member-card.auditor .member-avatar { background: linear-gradient(135deg, #1d5c52 0%, #1d6b5a 100%); }
.member-card.auditor .member-role { color: var(--sea-teal); }

/* COMPANY INFO */
#company-info {
  padding: 8rem 0;
  background: var(--warm-white);
}
.company-inner {
  margin-top: 3.5rem;
}
.info-table {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid var(--border-light);
}
.info-table th {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  padding: 1.2rem 0;
  text-align: left;
  width: 22%;
  vertical-align: top;
}
.info-table td {
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 1.2rem 0 1.2rem 2rem;
  line-height: 1.75;
  vertical-align: top;
}
.info-table td strong { color: var(--indigo); font-weight: 500; }

@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: 1fr; }
  .info-table { max-width: 100%; }
  .info-table th { width: 30%; }
  .info-table td { padding-left: 1rem; }
}
