/* ============================================================
 * about.css — 会社概要ページ
 * ============================================================ */

/* #page-hero */
#page-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { #page-hero { height: 360px; } }

#page-hero .page-hero-bg { position: absolute; inset: 0; }
#page-hero .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
#page-hero .page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,126,0,.85) 0%, rgba(34,34,34,.7) 100%);
}
#page-hero .page-hero-en {
  font-size: 12px; font-weight: 700; letter-spacing: .28em;
  color: rgba(255,255,255,.65); margin-bottom: 10px;
}
#page-hero .page-hero-title {
  font-size: 32px; font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 20px;
}
@media (min-width: 768px) { #page-hero .page-hero-title { font-size: 48px; } }

#page-hero .breadcrumb-list {
  display: flex; align-items: center; list-style: none; padding: 0; margin: 0;
}
#page-hero .breadcrumb-list li { font-size: 12px; color: rgba(255,255,255,.65); }
#page-hero .breadcrumb-list li::after { content: '/'; margin: 0 6px; opacity: .5; }
#page-hero .breadcrumb-list li:last-child::after { display: none; }
#page-hero .breadcrumb-list li a { color: rgba(255,255,255,.65); text-decoration: none; }
#page-hero .breadcrumb-list li a:hover { color: #fff; }

/* #about-intro */
#about-intro { background: #fff; }

.about-en {
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  color: #f39800; margin-bottom: 10px;
}
.about-section-title {
  font-size: 28px; font-weight: 900; color: #222;
  line-height: 1.4; margin-bottom: 20px;
}
@media (min-width: 768px) { .about-section-title { font-size: 36px; } }

.about-desc {
  font-size: 14px; color: #555; line-height: 2;
  text-align: left; margin-bottom: 16px;
}
@media (min-width: 768px) { .about-desc { font-size: 15px; } }

/* #about-table */
#about-table { background: #fff; }

.about-table-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.about-tbl { border-collapse: collapse; font-size: 14px; }
@media (min-width: 768px) { .about-tbl { font-size: 15px; } }

.about-tbl tbody tr { border-bottom: 1px solid #e8e8e8; }
.about-tbl tbody tr:last-child { border-bottom: none; }
.about-tbl tbody tr:hover { background: #fffaf4; }

.about-tbl tbody th {
  width: 36%; background: #f9f9f9;
  font-weight: 700; color: #444;
  padding: 18px 20px; text-align: left;
  vertical-align: top; border-right: 1px solid #e8e8e8;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .about-tbl tbody th { width: 28%; padding: 20px 24px; }
}

.about-tbl tbody td { padding: 18px 20px; color: #333; line-height: 1.75; vertical-align: top; }
@media (min-width: 768px) { .about-tbl tbody td { padding: 20px 24px; } }

.about-tbl tbody td a { color: #f39800; text-decoration: underline; text-underline-offset: 2px; }
.about-tbl tbody td a:hover { opacity: .75; }

/* #about-cta */
#about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f39800 0%, #e67e00 100%);
  margin-top: 80px;
}

.about-cta-label {
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  color: rgba(255,255,255,.75); margin-bottom: 16px;
}
.about-cta-title {
  font-size: 24px; font-weight: 900; color: #fff;
  line-height: 1.45; margin-bottom: 16px;
}
@media (min-width: 768px) { .about-cta-title { font-size: 34px; } }

.about-cta-desc {
  font-size: 14px; color: rgba(255,255,255,.85);
  line-height: 1.85; margin-bottom: 32px;
}

.about-btn-tel {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 4px;
  font-size: 18px; font-weight: 900;
  background: #fff; color: #f39800;
  text-decoration: none; transition: opacity .2s;
}
.about-btn-tel:hover { opacity: .85; color: #f39800; }

.about-btn-mail {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 4px;
  font-size: 16px; font-weight: 700;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent; color: #fff;
  text-decoration: none; transition: background .2s, color .2s;
}
.about-btn-mail:hover { background: #fff; color: #f39800; }
