/*
Theme Name: sunroad
Theme URI: https://amp.jp/
Author: SunRoad
Author URI: https://sunroad.org/
Description: A simple, 1-column responsive theme.
Version: 1.0
License: 
License URI: 
Text Domain: sunroad-web
*/

/* --- 基本的なリセットとボックスサイジング --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* --- 1カラムレイアウトのコンテナ --- */
.container {
  max-width: 960px; /* メインコンテンツの最大幅 */
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- サイト全体のラッパー --- */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex-grow: 1; /* フッターを最下部に固定するため */
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* --- メニュー (ヘッダー上部) --- */
.main-navigation {
  background-color: #333;
}

.main-navigation ul {
  display: flex; /* 横並び */
  flex-wrap: wrap; /* 折り返し */
  justify-content: center; /* 中央揃え */
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.main-navigation li {
  margin: 0 10px;
}

.main-navigation a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  display: block;
}

.main-navigation a:hover {
  background-color: #555;
}

/* --- ヘッダー --- */
.site-header {
  padding: 2rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.site-title {
  margin: 0;
  font-size: 2.5rem;
}
.site-title a {
  text-decoration: none;
  color: #222;
}

.site-description {
  margin: 0;
  color: #777;
}

/* --- コンテンツ --- */
.entry-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.entry-content p {
  margin-bottom: 1.5em;
}

/* --- フッター --- */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}

/* --- レスポンシブ対応 (シンプルな例) --- */
@media (max-width: 768px) {
  .site-title {
    font-size: 2rem;
  }

  /* メニューを縦積みにする */
  .main-navigation ul {
    flex-direction: column;
    align-items: center;
  }

  .main-navigation li {
    margin: 5px 0;
  }
}

/* --- WordPress標準クラス --- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
