@charset "UTF-8";
/* ============================================================
   about.css - 会社案内ページ固有スタイル
   ※ 中ページ共通スタイル（.page-hero / .inner-title / .map-btn 等）は common.css に記述
   ============================================================ */

/* ===== ご挨拶 ===== */
.about-greeting {
  background: #ffffff;
  padding: 60px 0;
}

.greeting-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.greeting-photo {
  flex-shrink: 0;
}

.greeting-text {
  flex: 1;
}

.greeting-lead {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Shippori Mincho B1', 'Yu Mincho', '游明朝', serif;
}

.greeting-name-ja {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 4px;
  font-family: 'Shippori Mincho B1', 'Yu Mincho', '游明朝', serif;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.greeting-title-ja {
  font-size: 1.5rem;
  font-family: 'Shippori Mincho B1', 'Yu Mincho', '游明朝', serif;
  font-weight: 400;
  color: #333;
}

.greeting-name-kanji {
  font-size: clamp(2rem, 4vw, 4.375rem);
  font-weight: 400;
  color: #000;
  font-family: 'Shippori Mincho B1', 'Yu Mincho', '游明朝', serif;
}

.greeting-name-en {
  font-size: 1.1875rem;
  color: #555;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.greeting-title-en {
  font-size: 1.1875rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #555;
}

.greeting-name-roman {
  font-size: 1.875rem;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
}

.greeting-body p {
  font-size: 1rem;
  color: #333;
  line-height: 2;
  margin-bottom: 20px;
}

.greeting-en {
  font-size: 0.9375rem !important;
  color: #555 !important;
  line-height: 1.9 !important;
}

/* ===== 会社概要 ===== */
.about-overview {
  padding: 60px 0;
}

.overview-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.overview-table th,
.overview-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #d0d0d0;
  vertical-align: top;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
}

.overview-table th {
  width: 160px;
  white-space: nowrap;
  color: #102487;
  font-weight: 500;
  background: #fff;
}

.overview-table td {
  color: #333;
  background: #fff;
}

.overview-table dl.d-flex {
  flex-wrap:wrap;
}

.overview-photo {
  flex-shrink: 0;
  width: 260px;
}

/* ===== 沿革 ===== */
.about-history {
  background: #ffffff;
  padding: 60px 0;
}

.overview-table-wrap,
.history-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.history-table th,
.history-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
}

.history-table th {
  width: 160px;
  white-space: nowrap;
  color: #102487;
  font-weight: 500;
}

.history-table td {
  color: #333;
}

/* ===== 事業所 ===== */
.about-offices {
  padding: 60px 0;
}

.office-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.office-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.office-info {
  flex: 1;
}

.office-name {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.office-info p {
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
}

.office-photo {
  flex-shrink: 0;
  width: 350px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* ご挨拶 */
  .greeting-layout {
    flex-direction: column;
    align-items: center;
  }

  .greeting-photo .dummy-img {
    width: 160px !important;
  }

  /* 会社概要 */
  .overview-layout {
    flex-direction: column;
  }

  .overview-photo {
    width: 100%;
  }

  /* 事業所 */
  .office-item {
    flex-direction: column;
  }

  .office-photo {
    width: 100%;
  }
}