/* ===== リセット・基本設定 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif; background: #f5f5f5; color: #333; line-height: 1.8; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: #1a56a0; }
a:hover { text-decoration: underline; }

/* ===== ヘッダー ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #02234f;
  padding: 10px 20px;
}
#header .header-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#header .header-logo img { width: 130px; }
#header .header-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: 6px;
  padding: 4px 12px;
  color: #2e7d32;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}
#header .header-tel:hover { opacity: 0.8; text-decoration: none; }

/* ===== メインコンテンツ ===== */
.page-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 40px 60px;
  min-height: calc(100vh - 200px);
}

/* ===== パンくず ===== */
.breadcrumb {
  font-size: 12px;
  color: #888;
  margin-bottom: 32px;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: #1a56a0; }
.breadcrumb span { margin: 0 6px; }

/* ===== ページタイトル ===== */
.page-title {
  font-size: 24px;
  font-weight: bold;
  color: #02234f;
  border-left: 5px solid #f5a623;
  padding-left: 16px;
  margin-bottom: 32px;
}

/* ===== テーブル（特商法・会社概要） ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 14px;
}
.info-table th,
.info-table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  vertical-align: top;
  text-align: left;
}
.info-table th {
  background: #f0f4f8;
  color: #02234f;
  font-weight: bold;
  width: 30%;
  white-space: nowrap;
}
.info-table td {
  background: #fff;
  line-height: 1.8;
}

/* ===== プライバシーポリシー本文 ===== */
.policy-section {
  margin-bottom: 32px;
}
.policy-section h2 {
  font-size: 16px;
  font-weight: bold;
  color: #02234f;
  border-bottom: 2px solid #e0e8f0;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.policy-section p,
.policy-section li {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 8px;
}
.policy-section ol,
.policy-section ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.policy-section li { margin-bottom: 4px; }

/* ===== お問い合わせページ ===== */
.contact-info {
  background: #f0f6ff;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.contact-info p { font-size: 14px; line-height: 1.9; color: #444; }
.contact-info .tel-large {
  font-size: 28px;
  font-weight: bold;
  color: #02234f;
  margin: 12px 0;
}
.contact-info .tel-large a { color: #02234f; }
.contact-info .line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06c755;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 6px;
  margin-top: 12px;
}
.contact-info .line-btn:hover { opacity: 0.85; text-decoration: none; }

.form-placeholder {
  background: #fff9e6;
  border: 2px dashed #f5a623;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  color: #888;
  font-size: 14px;
}
.form-placeholder p { margin-bottom: 8px; }

/* ===== フッター ===== */
#footer {
  background: #02234f;
  padding: 24px 20px;
  text-align: center;
}
#footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
#footer .footer-links a {
  color: #fff;
  font-size: 13px;
  text-decoration: underline;
}
#footer .footer-links a:hover { opacity: 0.8; }
#footer .copyright { color: #ccc; font-size: 12px; }

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .page-wrap { padding: 24px 16px 40px; }
  .page-title { font-size: 20px; }
  .info-table th { width: 36%; font-size: 13px; }
  .info-table td { font-size: 13px; }
  #header .header-tel { font-size: 12px; padding: 4px 8px; }
  #header .header-logo img { width: 100px; }
}
