/* =========================
   会社概要セクション
========================= */

.about-page-section {
  padding-top: 100px; /* PC版余白統一 */
  padding-bottom: 60px;
}

.about-page-section h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

/* テーブル */
.company-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.company-table th,
.company-table td {
  border-bottom: 1px solid #eee;
  padding: 18px 20px;
  vertical-align: middle;
  font-size: 15px;
}

.company-table th {
  width: 25%;
  text-align: left;
  font-weight: bold;
  background: #fcfcfc;
  color: #333;
}

.company-table td a {
  color: #E60012;
  text-decoration: none;
  font-weight: bold;
}

.multi-list {
  line-height: 1.8;
}

/* =========================
   代表挨拶セクション
========================= */

.greeting-section {
  padding-top: 80px; 
  padding-bottom: 80px;
}

.greeting-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

/* 横並びレイアウト */
.greeting-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

/* 写真 */
.greeting-photo {
  flex-shrink: 0;
}

.greeting-photo img {
  width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* テキスト */
.greeting-text {
  flex: 1;
}

.greeting-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
  text-align: center; /* 中央寄せ統一 */
}

.greeting-subtitle {
  color: #666;
  margin-bottom: 30px;
  text-align: center; /* 中央寄せ統一 */
  font-weight: bold;
}

/* 本文 */
.greeting-message p {
  margin-bottom: 1.5em;
  line-height: 1.9;
  color: #333;
  text-align: justify; /* 左右端を揃えて美しく */
}

/* 署名 */
.greeting-sign {
  margin-top: 40px;
  font-weight: bold;
  text-align: right;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* =========================
   レスポンシブ
========================= */

@media (max-width: 768px) {
  .about-page-section {
    padding-top: 40px; /* スマホ版固定 */
  }

  .greeting-section {
    padding-top: 40px;
  }

  /* テーブル：スマホで見やすいように */
  .company-table th {
    width: 35%;
    padding: 15px 10px;
    font-size: 14px;
  }

  .company-table td {
    padding: 15px 10px;
    font-size: 14px;
  }

  /* 代表挨拶 縦並び */
  .greeting-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .greeting-photo img {
    width: 100%;
    max-width: 300px;
  }

  .greeting-title,
  .greeting-subtitle {
    text-align: center;
  }

  .greeting-sign {
    text-align: center;
  }
}