.company-page h1 {
  font-size: 28px;
  margin-bottom: 28px;
}

.company-section {
  margin-bottom: 60px;
}

/* ==============================
   会社案内ページ：ロゴ中央配置
============================== */
.company-logo {
  display: block;
  margin: 40px auto;
  max-width: 240px;
  height: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.2s;
}

.ceo-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

/* 代表写真 */
.ceo-photo {
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

.ceo-photo img {
  width: 240px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto;
}

/* 代表挨拶テキスト */
.ceo-text {
  flex: 1;
  line-height: 2;
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: 1.05rem;
  color: #222;
  letter-spacing: 0.02em;
  text-align: justify;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.8s ease-out forwards;
  animation-delay: 0.6s;
}

/* フェードアップアニメーション */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }
  60% {
    opacity: 0.7;
    transform: translateY(10px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ==============================
   会社概要テーブル
============================== */
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.company-table th,
.company-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.company-table th {
  width: 180px;
  background: #f8f9fb;
  font-weight: 600;
  color: #333;
}

.company-contact a {
  color: var(--c);
  text-decoration: none;
}
.company-contact a:hover {
  text-decoration: underline;
}

/* ==============================
   スマホ調整
============================== */
@media (max-width: 768px) {
  .ceo-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ceo-photo {
    animation-delay: 0.3s;
  }

  .ceo-photo img {
    width: 70%;
    max-width: 220px;
    height: auto;
    margin-bottom: 20px;
  }

  .ceo-text {
    font-size: 0.96rem;
    line-height: 1.9;
    text-align: left;
  }

  .company-table th {
    width: 120px;
  }
}
