@charset "UTF-8";

/* =========================================================
   竜輝工業 - 企業理念・代表挨拶 (about.css)
   ========================================================= */

/* ---------- Philosophy ---------- */
.philosophy { text-align: center; }
.philosophy__catch {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.philosophy__catch .accent {
  background: linear-gradient(120deg, var(--blue), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.philosophy__text {
  margin-top: 32px;
  max-width: 820px;
  margin-inline: auto;
  color: var(--text);
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 2.1;
  text-align: left;
}
.philosophy__text p + p { margin-top: 22px; }
.philosophy__lead-out {
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
@media (max-width: 600px) { .philosophy__text { line-height: 1.95; } }

/* ---------- Values ---------- */
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.values__card { padding: 44px 32px; text-align: center; }
.values__ico {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.values__ico svg { width: 44px; height: 44px; }
.values__card h3 { font-size: 1.35rem; margin-bottom: 14px; }
.values__card h3::after { content: ""; display: block; width: 32px; height: 2px; background: var(--gold); margin: 12px auto 0; }
.values__card p { font-size: 0.92rem; color: var(--muted); }
@media (max-width: 820px) { .values__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

/* ---------- Message ---------- */
.message__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.message__media { position: relative; }
.message__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.message__media::before {
  content: "";
  position: absolute;
  right: -16px; bottom: -16px;
  width: 130px; height: 130px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.message__tag {
  position: absolute;
  left: 0; bottom: 22px;
  background: var(--navy-800);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 12px 22px;
  border-left: 3px solid var(--gold);
}
.message__body .sec-title { margin-top: 16px; margin-bottom: 10px; }
.message__body p { margin-top: 18px; color: var(--text); font-size: 0.96rem; }
.message__sign { margin-top: 28px !important; }
.message__sign strong { font-family: var(--font-jp); font-size: 1.2rem; color: var(--ink); letter-spacing: 0.08em; }
@media (max-width: 820px) {
  .message__inner { grid-template-columns: 1fr; }
  .message__media { max-width: 420px; }
}

/* ---------- Company table ---------- */
.company-table {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.company-table th, .company-table td { text-align: left; padding: 20px 26px; border-bottom: 1px solid var(--line); font-size: 0.95rem; vertical-align: top; }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th {
  width: 34%;
  background: var(--bg-soft);
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.company-table td { color: var(--text); }
.link-line { color: var(--blue); font-weight: 500; }
.link-line:hover { color: var(--gold-600); text-decoration: underline; }
@media (max-width: 600px) {
  .company-table th, .company-table td { display: block; width: 100%; padding: 14px 20px; }
  .company-table th { border-bottom: none; }
  .company-table td { padding-top: 0; }
}
