@charset "UTF-8";

/* =========================================================
   会社概要ページ専用スタイル
   ========================================================= */

/* 数字で見る */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.stat:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.stat__en { font-family: var(--font-en); letter-spacing: 0.2em; font-size: 0.72rem; color: var(--blue-400); text-transform: uppercase; }
.stat__num {
  font-family: var(--font-en); font-weight: 700; font-size: 3.2rem; line-height: 1;
  margin: 12px 0 6px;
  background: var(--grad-sky);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.stat__num small { font-size: 1.3rem; }
.stat__label { font-weight: 700; }

/* 会社概要テーブル */
.company-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.company-table th, .company-table td { text-align: left; padding: 20px 28px; border-bottom: 1px solid var(--line); vertical-align: top; }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th {
  width: 220px;
  background: var(--sky-50);
  font-weight: 700;
  color: var(--blue-800);
  font-size: 0.95rem;
}
.company-table td { color: var(--ink-soft); }
.company-table td a { color: var(--blue-600); font-weight: 500; }
.company-table td a:hover { text-decoration: underline; }

/* 地図 */
.map { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px, 4vw, 50px); align-items: stretch; }
.map__info {
  background: var(--grad-blue);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 46px);
  display: flex; flex-direction: column; justify-content: center;
}
.map__en { font-family: var(--font-en); letter-spacing: 0.3em; font-size: 0.8rem; color: var(--sky-200); }
.map__title { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; margin: 12px 0 18px; }
.map__addr { font-size: 1.05rem; margin-bottom: 8px; }
.map__sub { font-size: 0.9rem; opacity: 0.86; }
.map__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 340px;
}
.map__frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

@media (max-width: 820px) {
  .stats { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .company-table th { width: 130px; padding: 16px 18px; font-size: 0.86rem; }
  .company-table td { padding: 16px 18px; }
  .map { grid-template-columns: 1fr; }
}
