@charset "UTF-8";
/*
  共通情報ページ用CSS（会社概要 /company/・プライバシーポリシー /privacy/・特商法 /law/）
  新規作成：2026-06-11 フッター統一・共通ページ新設案件
  ベース：old20260610（サーバー最新ソース）
*/

:root {
  --wwp-main: #E77F31;
  --wwp-dark: #080404;
  --wwp-bg: #fff;
  --wwp-bg-sub: #faf6f2;
  --wwp-border: #e5e5e5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body.wwp-page {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--wwp-dark);
  background: var(--wwp-bg);
  line-height: 1.8;
  font-size: 16px;
}

.wwp-header {
  border-bottom: 1px solid var(--wwp-border);
  padding: 16px 20px;
}
.wwp-header__inner {
  max-width: 960px;
  margin: 0 auto;
}
.wwp-header__logo img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}

.wwp-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.wwp-breadcrumb {
  font-size: 13px;
  color: #666;
  margin-bottom: 32px;
}
.wwp-breadcrumb a { color: #666; }

.wwp-page-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--wwp-main);
}
.wwp-page-lead {
  margin-bottom: 40px;
  color: #444;
}

.wwp-section { margin-bottom: 48px; }
.wwp-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid var(--wwp-main);
}
.wwp-section p { margin-bottom: 16px; }
.wwp-section ul, .wwp-section ol {
  margin: 0 0 16px 1.5em;
}
.wwp-section li { margin-bottom: 8px; }

/* 会社概要テーブル */
.wwp-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.wwp-table th, .wwp-table td {
  border: 1px solid var(--wwp-border);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}
.wwp-table th {
  background: var(--wwp-bg-sub);
  width: 230px;
  font-weight: 700;
  white-space: nowrap;
}

/* Googleマップ */
.wwp-map {
  width: 100%;
  margin-top: 16px;
}
.wwp-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* サービス一覧 */
.wwp-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
}
.wwp-services li a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--wwp-border);
  border-radius: 6px;
  color: var(--wwp-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: border-color .2s, color .2s;
}
.wwp-services li a:hover {
  border-color: var(--wwp-main);
  color: var(--wwp-main);
}

/* 統一フッター */
.wwp-footer {
  background: var(--wwp-dark);
  color: #fff;
  padding: 40px 20px 24px;
}
.wwp-footer__inner {
  max-width: 960px;
  margin: 0 auto;
}
.wwp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 20px;
}
.wwp-footer__links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.wwp-footer__links a:hover { text-decoration: underline; }
.wwp-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.2);
  margin-bottom: 20px;
}
.wwp-footer__legal a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
}
.wwp-footer__legal a:hover { text-decoration: underline; }
.wwp-footer__copy {
  font-size: 12px;
  color: #999;
}

@media (max-width: 768px) {
  .wwp-page-title { font-size: 22px; }
  .wwp-table th, .wwp-table td { display: block; width: 100%; }
  .wwp-table th { border-bottom: none; }
  .wwp-table tr + tr th { border-top: none; }
  .wwp-services { grid-template-columns: 1fr; }
  .wwp-map iframe { height: 300px; }
}
