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

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Hero */
.hero {
  padding: 80px 0;
  text-align: center;
  background: #f8f8f6;
}

.tagline {
  font-size: 1.25rem;
  color: #555;
  letter-spacing: 0.05em;
}

/* Sections */
section {
  padding: 64px 0;
}

section + section {
  border-top: 1px solid #eee;
}

h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid #333;
  letter-spacing: 0.05em;
}

/* Services */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-item p {
  color: #555;
  font-size: 0.95rem;
}

.link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

/* Company table */
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.company-table th,
.company-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 120px;
  color: #777;
  font-weight: normal;
  white-space: nowrap;
}

/* Privacy */
.policy-content {
  font-size: 0.9rem;
  color: #555;
}

.policy-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.policy-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 24px 0 8px;
}

.policy-content p {
  margin-bottom: 8px;
}

.policy-date {
  margin-top: 32px;
  color: #999;
  font-size: 0.85rem;
}

/* Footer */
footer {
  padding: 32px 0;
  background: #f8f8f6;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 600px) {
  .hero {
    padding: 48px 0;
  }

  .tagline {
    font-size: 1rem;
  }

  section {
    padding: 48px 0;
  }

  .company-table th {
    width: 90px;
  }
}
