/* yokosawa.cc shared styles */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #797979;
  font-family: 'HiraKakuProN-W3', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  color: #584D4D;
}
#body_content {
  max-width: 1000px;
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
}
/* Navigation */
.site-nav {
  text-align: center;
  padding: 9px 0 6px;
  border-bottom: 1px solid #ddd;
}
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav li { display: inline; padding: 0 10px; }
.site-nav a {
  text-decoration: none;
  color: #666;
  font-family: Arial, sans-serif;
  font-size: 1em;
  line-height: 30px;
}
.site-nav a:hover { color: #463C3C; }
.site-nav .current a { color: #463C3C; font-weight: bold; }
/* Page title */
.page-title {
  color: #a7a7a7;
  font-family: 'Verdana', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  margin: 0;
  padding: 10px 22px 8px;
}
/* Section heading */
.section-title {
  color: #584D4D;
  font-family: 'HiraKakuProN-W6', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  margin: 0 0 10px;
}
/* Body text */
.body-text {
  color: #584D4D;
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 12px;
}
/* Hero image */
.hero-img {
  display: block;
  width: 100%;
  height: auto;
}
/* Page content padding */
.page-content {
  padding: 24px 30px;
}
@media (max-width: 640px) {
  .page-content { padding: 16px; }
  .page-title { font-size: 26px; line-height: 36px; padding: 8px 16px; }
}
