/* 雫 - コーヒータイマー 法的ページ共通スタイル */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  background-color: #faf8f5;
  color: #1a1410;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.nav {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 13px;
  color: #6d4c2e;
  text-decoration: none;
  padding: 4px 12px;
  border: 1px solid #e8e0d8;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.nav a:hover {
  background-color: #f0ebe5;
}

.nav a.active {
  background-color: #6d4c2e;
  color: #fff;
  border-color: #6d4c2e;
}

h1 {
  font-size: 24px;
  font-weight: bold;
  color: #1a1410;
  margin-bottom: 4px;
}

.updated-at {
  font-size: 12px;
  color: #b5a898;
  margin-bottom: 32px;
}

.section {
  margin-bottom: 24px;
}

.section h2 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1410;
  margin-bottom: 8px;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.card p {
  font-size: 14px;
  color: #8a7a6a;
  line-height: 1.8;
}

.card p + p {
  margin-top: 12px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  font-size: 14px;
  color: #8a7a6a;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.card ul li::before {
  content: '・';
  position: absolute;
  left: 0;
}

table.tokushoho {
  width: 100%;
  border-collapse: collapse;
}

table.tokushoho th,
table.tokushoho td {
  font-size: 14px;
  color: #8a7a6a;
  padding: 12px 0;
  border-bottom: 1px solid #e8e0d8;
  vertical-align: top;
  text-align: left;
}

table.tokushoho th {
  width: 35%;
  font-weight: 600;
  color: #4a3a2a;
}

.footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8e0d8;
  font-size: 12px;
  color: #b5a898;
}
