/* ============================================================
   subpage.css - 会社概要・運営規定・プライバシーポリシー 共通スタイル
============================================================ */

/* ページヘッダー */
.subpage-hero {
  background: linear-gradient(135deg, #fff9f5 0%, #fef0e6 50%, #fce8f4 100%);
  padding: 100px 0 40px;
  text-align: center;
  border-bottom: 1px solid #f0ddd0;
}
.subpage-hero__en {
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.subpage-hero__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  font-weight: 700;
  color: #b07050;
}

/* パンくずリスト */
.breadcrumb {
  background: #faf5f0;
  border-bottom: 1px solid #f0ddd0;
  padding: 10px 0;
  font-size: 12px;
  color: #aaa;
}
.breadcrumb a { color: #b07050; }
.breadcrumb a:hover { text-decoration: underline; }

/* メインコンテンツ */
.subpage-main {
  padding: 48px 0 72px;
  background: #faf5f0;
}

/* ドキュメントカード */
.doc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0ddd0;
  padding: 48px;
  line-height: 1.9;
  color: #444;
  font-size: 14px;
}
@media (max-width: 768px) {
  .doc-card { padding: 24px 16px; }
}

/* セクション見出し */
.doc-section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 700;
  color: #b07050;
  border-left: 4px solid #b07050;
  padding-left: 12px;
  margin: 40px 0 16px;
}
.doc-section-title:first-child { margin-top: 0; }

.doc-subsection-title {
  font-size: 15px;
  font-weight: 700;
  color: #555;
  margin: 20px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px dashed #f0ddd0;
}

/* 情報テーブル */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 14px;
}
.info-table th,
.info-table td {
  padding: 12px 16px;
  border: 1px solid #f0ddd0;
  vertical-align: top;
  line-height: 1.8;
}
.info-table th {
  background: #fdf5ef;
  color: #b07050;
  font-weight: 700;
  white-space: nowrap;
  width: 160px;
}
.info-table td { background: #fff; }
.info-table a { color: #b07050; }
.info-table a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .info-table th { width: 100px; white-space: normal; }
  .info-table th, .info-table td { padding: 10px 12px; font-size: 13px; }
}

/* リスト */
.doc-list {
  padding-left: 0;
  margin: 8px 0 20px;
}
.doc-list li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #faf5f0;
  list-style: none;
}
.doc-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #f0a0a0;
  font-size: 9px;
  top: 8px;
}

/* 注意書きボックス */
.notice-box {
  background: #fff9f5;
  border: 1px solid #f5d0b0;
  border-left: 4px solid #b07050;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 12px 0 20px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}
.notice-box--important {
  background: #fff5f5;
  border-color: #e08080;
  border-left-color: #c03030;
}
.notice-box--important p { color: #a02020; font-size: 15px; }

/* 目次 */
.toc {
  background: #fdf5ef;
  border: 1px solid #f0ddd0;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0 32px;
  display: inline-block;
  min-width: 260px;
}
.toc__title {
  font-weight: 700;
  color: #b07050;
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.toc__list {
  padding-left: 20px;
  margin: 0;
}
.toc__list li {
  font-size: 13px;
  margin-bottom: 6px;
}
.toc__list a {
  color: #777;
  text-decoration: none;
}
.toc__list a:hover { color: #b07050; text-decoration: underline; }

/* アクセスマップ */
.access-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f0ddd0;
}

/* 最終更新日 */
.doc-updated {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #f0ddd0;
  font-size: 12px;
  color: #aaa;
  text-align: right;
}

/* 戻るリンク */
.back-link {
  margin-top: 32px;
  text-align: center;
}
.back-link a {
  display: inline-block;
  color: #b07050;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border: 2px solid #b07050;
  border-radius: 9999px;
  transition: all 0.2s;
}
.back-link a:hover {
  background: #b07050;
  color: #fff;
}
