/* Project: About Page */

.c-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.c-container.-center {
  text-align: center;
}

/* ヒーロー（-company）は共通化のため base.css へ移動 */

.c-section {
  padding: 72px 0;
}
.c-sec-head {
  margin-bottom: 28px;
}
.c-sec-head__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #7288a7;
  margin-bottom: 6px;
}
.c-sec-head__title {
  font-size: 24px;
  letter-spacing: 0.04em;
}

/* Company outline table */
.c-company-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e6edf5;
}
.c-company-table th,
.c-company-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e6edf5;
  vertical-align: top;
}
.c-company-table th {
  background: #0e3a6b;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.c-company-table tr:last-child th,
.c-company-table tr:last-child td {
  border-bottom: none;
}

/* Access */
.c-access {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
@media (max-width: 960px) {
  .c-access {
    grid-template-columns: 1fr;
  }
  .c-company-table th {
    width: 35%;
  }
}
.c-access__map iframe {
  width: 100%;
  height: 360px;
  border-radius: 8px;
}
.c-access__notes {
  margin: 0;
  padding-left: 20px;
  color: #314a68;
}
.c-access__notes li + li {
  margin-top: 10px;
}

/* Columns and cards */
.c-columns.-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.c-columns.-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .c-columns.-three,
  .c-columns.-two {
    grid-template-columns: 1fr;
  }
}
.c-card {
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(6, 22, 47, 0.04);
}
.c-card__title {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0e3a6b;
}
.c-card__text {
  color: #314a68;
  font-size: 14px;
  line-height: 1.9;
}

/* Logo meaning */
.c-logo-meaning {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 960px) {
  .c-logo-meaning {
    grid-template-columns: 1fr;
  }
}
.c-logo-meaning__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(
      200px 120px at 70% 70%,
      rgba(14, 58, 107, 0.2),
      transparent 60%
    ),
    linear-gradient(135deg, #0e3a6b 0%, #1f5aa2 100%);
  border-radius: 16px;
}
.c-list.-disc {
  padding-left: 20px;
  color: #314a68;
}
.c-list.-disc li + li {
  margin-top: 8px;
}

/* Related */
.c-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 960px) {
  .c-related {
    grid-template-columns: 1fr;
  }
}
.c-related a {
  display: block;
  padding: 14px 16px;
  border: 1px solid #e6edf5;
  border-radius: 8px;
  color: #0e3a6b;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.c-related a:hover {
  background: #0e3a6b;
  color: #fff;
  border-color: #0e3a6b;
}

/* CTA */
.c-btn.-primary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 24px;
  background: #0e3a6b;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.c-btn.-primary:hover {
  opacity: 0.9;
}

.p-about-hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  background: radial-gradient(
      1200px 400px at 20% 10%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(160deg, #0b0f1a 0%, #152036 60%, #0f1730 100%),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.p-about-hero__inner {
  padding: 64px 16px;
}
.p-about-hero__label {
  letter-spacing: 0.1em;
  font-size: 12px;
  opacity: 0.9;
}
.p-about-hero__title {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2;
  margin: 12px 0 8px;
}
.p-about-hero__lead {
  font-size: clamp(14px, 2vw, 16px);
  opacity: 0.9;
}

.p-about-overview {
  padding: 80px 16px;
}
.p-about-overview .l-container {
  max-width: 1080px;
  margin: 0 auto;
}

.p-about-features {
  padding: 80px 16px;
  background: #0b0f1a;
}
.p-about-features .l-container {
  max-width: 1160px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.feature-item {
  display: grid;
  grid-template-rows: 180px auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.feature-thumb {
  background-size: cover;
  background-position: center;
}
.feature-body {
  padding: 20px;
  color: #eaeef5;
}
.feature-title {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}
.feature-text {
  font-size: 14px;
  opacity: 0.85;
}

.p-about-company {
  padding: 80px 16px;
}
.p-about-company .l-container {
  max-width: 1080px;
  margin: 0 auto;
}
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 960px) {
  .company-grid {
    grid-template-columns: 1fr;
  }
}
.company-heading {
  font-size: 20px;
  margin-bottom: 12px;
}
.company-table {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 12px;
}
.company-table dt {
  opacity: 0.7;
}
.company-table dd {
  margin: 0;
}
.company-list {
  margin: 0;
  padding-left: 20px;
}

.p-about-history {
  padding: 80px 16px;
  background: #0b0f1a;
}
.p-about-history .l-container {
  max-width: 960px;
  margin: 0 auto;
}
.history-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.history-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #eaeef5;
}
.history-list time {
  color: #fff;
  font-weight: 700;
}

.p-about-cta {
  padding: 80px 16px;
  text-align: center;
}
.p-about-cta .l-container {
  max-width: 960px;
  margin: 0 auto;
}
.about-cta__title {
  font-size: clamp(18px, 3vw, 28px);
  margin-bottom: 16px;
}

/* simple reveal defaults to align with existing .js-animate-* classes */
.js-animate-fadeup,
.js-animate-slidein-left {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s ease;
}
.js-animate-slidein-left {
  transform: translateX(-16px);
}
.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
