/*
Theme Name: WP Theme
Description: カスタムWordPressテーマ
Version: 1.0.0
Author: Your Name
Author URI: https://example.com
Text Domain: wp-theme
*/

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Header */
.site-header {
  background-color: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.site-description {
  color: #666;
  margin-top: 0.5rem;
}

/* Navigation */
.main-navigation {
  margin-top: 1rem;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.main-navigation a:hover {
  color: #007cba;
}

/* Main Content */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.entry-content {
  margin-bottom: 2rem;
}

.entry-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.entry-meta {
  color: #666;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
  margin-top: 3rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
  }

  .entry-title {
    font-size: 2rem;
  }
}
