/* ================================ */
/* トップページ CSS 全文 */
/* ================================ */

/* body設定 */
/* min-width設定により、1024px未満の画面幅では横スクロールが発生します。 */
/* スマホでもPC表示固定幅にする意図であればこのままで問題ありません。 */
body {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  overflow-x: auto;
  min-width: 1024px; /* スマホでも1024px固定 */
}

/* header */
header {
  background-color: #1f6ad6; /* 青背景 */
  padding: 32px 0; /* マジックナンバー: ヘッダーの上下パディング */
  text-align: center;
  margin: 0 auto 12px; /* 下マージンを縮小。マジックナンバー: ヘッダー下部のマージン */
  max-width: 1024px;
  width: 100%;
  border-radius: 8px; /* マジックナンバー: 角丸の半径 */
  box-shadow: 0 4px 10px rgba(0,0,0,0.12); /* マジックナンバー: 影のオフセット、ぼかし、色 */
  overflow: visible;
  position: relative;
}

header h1 {
  margin: 0;
  padding: 0 20px; /* マジックナンバー: 左右パディング */
  font-size: 2.8rem; /* マジックナンバー: フォントサイズ */
  color: #ffffff !important;  /* 文字白 */
  z-index: 2;
  position: relative;
}

/* 全体コンテナ */
#container {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 20px; /* 修正: padding-topを0に。マジックナンバー: 左右・下パディング */
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(0,0,0,0.1); /* マジックナンバー: 影のオフセット、ぼかし、色 */
}

/* ページトップボタン */
#toTopBtn {
  position: fixed;
  bottom: 30px; /* マジックナンバー: 下からの距離 */
  right: 30px; /* マジックナンバー: 右からの距離 */
  display: none;
  background-color: #1f6ad6;
  color: white;
  border: none;
  padding: 12px 16px; /* マジックナンバー: ボタンのパディング */
  border-radius: 6px; /* マジックナンバー: 角丸の半径 */
  cursor: pointer;
  font-size: 16px; /* マジックナンバー: フォントサイズ */
  box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* マジックナンバー: 影のオフセット、ぼかし、色 */
  z-index: 1000;
  transition: background-color 0.3s ease;
}
#toTopBtn:hover {
  background-color: #154a96;
}

/* グローバルナビゲーション */
#globalnavigation {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 0; /* 修正: 下マージンを0に */
  background-color: #1f6ad6;
  padding: 0;
  border-radius: 8px; /* マジックナンバー: 角丸の半径 */
  box-shadow: 0 3px 6px rgba(31, 106, 214, 0.3); /* マジックナンバー: 影のオフセット、ぼかし、色 */
  overflow-x: auto;
  white-space: nowrap;
}

/* グローバルナビゲーション直後のすべての要素の余白リセット (HTML構造が修正されたため、これらのルールは効果が薄いか、不要になる可能性が高いですが、念のため残しています) */
#globalnavigation + *,
#globalnavigation + * > * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* header とグローバルナビゲーション間の余白リセット (このルールは`header`のマージン設定と重複するため、`header`のマージンで調整するのが推奨されますが、念のため残しています) */
header + #globalnavigation {
  margin-top: 0 !important;
}


/* グローバルナビ内のUL */
#globalnavigation #navi ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex; /* flexからinline-flexに変更し、ul自体の幅をコンテンツに合わせる */
  justify-content: space-around; /* 項目を均等に配置 */
  flex-wrap: nowrap;
}

/* 各ナビ項目 */
#globalnavigation #navi ul li {
  margin: 0;
  flex: 0 0 auto; /* flex-basisを削除し、コンテンツのサイズに基づいて自動調整 */
}

/* 各リンク */
#globalnavigation #navi ul li a {
  display: block;
  padding: 12px 18px; /* マジックナンバー: リンクのパディング */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px; /* マジックナンバー: フォントサイズ */
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

#globalnavigation #navi ul li a:hover,
#globalnavigation #navi ul li.navigation.select a {
  background-color: #154a96;
  border-radius: 6px 6px 0 0; /* マジックナンバー: 角丸の半径 */
}

/* サイドセクション */
#side_section {
  width: 250px; /* マジックナンバー: サイドセクションの幅 */
  background: #f4f7ff;
  padding: 15px; /* マジックナンバー: パディング */
  box-sizing: border-box;
  border-radius: 8px; /* マジックナンバー: 角丸の半径 */
  box-shadow: inset 0 0 8px #d0d9ff; /* マジックナンバー: 影のオフセット、ぼかし、色 */
  float: left;
  margin-right: 20px; /* マジックナンバー: 右マージン */
  font-size: 14px; /* マジックナンバー: フォントサイズ */
  line-height: 1.5;
  text-align: left;
}

#side_section a {
  color: #1f6ad6;
  text-decoration: none;
}
#side_section a:hover {
  text-decoration: underline;
}

/* サイドナビリスト */
#side_navi ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 0; /* マジックナンバー: 下マージン */
}
#side_navi ul li {
  margin-bottom: 8px; /* マジックナンバー: 下マージン */
}

/* メインコンテンツ */
#main {
  margin-left: 280px; /* マジックナンバー: 左マージン */
  padding: 0 10px; /* マジックナンバー: 左右パディング */
  box-sizing: border-box;
  max-width: 820px; /* マジックナンバー: 最大幅 */
  min-width: 320px; /* マジックナンバー: 最小幅 */
  margin-top: 0 !important; /* 修正: mainの上余白を確実に0に */
}

#in_main {
  padding: 0 10px; /* マジックナンバー: 左右パディング */
}

/* タイトル */
.title p {
  font-size: 22px; /* マジックナンバー: フォントサイズ */
  font-weight: bold;
  border-bottom: 3px solid #1f6ad6; /* マジックナンバー: ボーダーの太さ */
  padding-bottom: 6px; /* マジックナンバー: 下パディング */
  margin-bottom: 15px; /* マジックナンバー: 下マージン */
}

/* What's New テーブル */
#newinformation table {
  width: 100%;
  border-collapse: collapse;
}

#newinformation .datearea {
  width: 140px; /* マジックナンバー: 幅 */
  padding: 6px 10px; /* マジックナンバー: パディング */
  background: #e3eafc;
  color: #154a96;
  font-weight: 600;
  border: 1px solid #c5d1ff;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

#newinformation .explanarea {
  padding: 6px 10px; /* マジックナンバー: パディング */
  border: 1px solid #c5d1ff;
  background: #fafcff;
  color: #333;
}

#newinformation a {
  color: #1f6ad6;
  text-decoration: none;
}
#newinformation a:hover {
  text-decoration: underline;
}

/* 折りたたみ詳細 */
details summary {
  cursor: pointer;
  font-weight: 600;
  color: #1f6ad6;
  margin-top: 10px; /* マジックナンバー: 上マージン */
  outline: none;
}

/* 開催概要ボックス */
/* HTMLのstyle属性とCSSのセレクタの組み合わせはメンテナンス性が低いです。 */
/* 専用のクラス名を使用することをお勧めします。 */
#main > div[style*="background-color: #fff8dc"] {
  max-width: 820px; /* マジックナンバー: 最大幅 */
  margin: 40px auto; /* マジックナンバー: 上下マージン */
  padding: 20px; /* マジックナンバー: パディング */
  background-color: #fff8dc;
  border: 1px solid #ccc;
  border-radius: 10px; /* マジックナンバー: 角丸の半径 */
  box-sizing: border-box;
  color: #333;
}

#main h2, #main h3 {
  margin-top: 0;
}
#main h2 {
  color: #b22222;
  font-size: 24px; /* マジックナンバー: フォントサイズ */
}
#main h3 {
  color: #333366;
  font-size: 18px; /* マジックナンバー: フォントサイズ */
  margin-bottom: 8px; /* マジックナンバー: 下マージン */
}

/* お問い合わせ */
#contact-info {
  max-width: 820px; /* マジックナンバー: 最大幅 */
  margin: 40px auto 60px; /* マジックナンバー: 上下左右マージン */
  padding: 20px; /* マジックナンバー: パディング */
  background: #fff8dc;
  border: 2px solid #d2691e;
  border-radius: 10px; /* マジックナンバー: 角丸の半径 */
  font-size: 16px; /* マジックナンバー: フォントサイズ */
  color: #333;
}

#contact-info h2 {
  color: #b22222;
  margin-bottom: 20px; /* マジックナンバー: 下マージン */
  font-size: 24px; /* マジックナンバー: フォントサイズ */
}
#contact-info p, #contact-info address {
  margin: 6px 0; /* マジックナンバー: 上下マージン */
}
#contact-info a {
  color: #b22222;
  text-decoration: none;
}
#contact-info a:hover {
  text-decoration: underline;
}

/* ヘッダー内ロゴ周り */
#header {
  max-width: 1024px;
  width: 100%;
  margin: 20px auto; /* マジックナンバー: 上下マージン */
  display: flex;
  align-items: center;
  gap: 16px; /* マジックナンバー: 要素間のスペース */
  padding: 0 16px; /* マジックナンバー: 左右パディング */
  box-sizing: border-box;
}

#logo-link {
  display: inline-block;
}
#logo {
  height: 60px; /* マジックナンバー: 高さ */
  width: auto;
  vertical-align: middle;
}

/* 団体名見出し */
#header h1 {
  font-size: 1.8rem; /* マジックナンバー: フォントサイズ */
  color: #1f6ad6;
  margin: 0;
  white-space: nowrap;
  z-index: 1;
  position: relative;
}

/* フッター */
footer#footer {
  max-width: 1024px;
  width: 100%;
  margin: 60px auto 0 auto; /* マジックナンバー: 上マージン */
  background-color: #1f6ad6;
  color: #fff;
  text-align: center;
  padding: 12px 0; /* マジックナンバー: 上下パディング */
  font-size: 14px; /* マジックナンバー: フォントサイズ */
  border-radius: 6px 6px 0 0; /* マジックナンバー: 角丸の半径 */
  box-sizing: border-box;
}

/* レスポンシブ解除（スマホでも固定幅を維持） */
@media screen and (max-width: 1024px) {
  body {
    overflow-x: auto;
  }
  /* ここに1024px以下での特別ルールが必要であれば追加 */
}

/* ================================ */
/* 0. 団員・市民団員募集ページ専用CSS */
/* これはkobe_utafesstyle.cssと独立している、または統合されるべきか要検討 */
/* ================================ */
* {
  box-sizing: border-box;
}
html, body {
  min-width: 1024px; /* スマホでもPC表示固定幅に */
  overflow-x: auto;
  margin: 0;
  padding: 0;
  font-family: "Meiryo", "メイリオ", "Noto Sans JP", system-ui, sans-serif;
  background: #f0f4fb;
  color: #2c3e50;
  line-height: 1.7;
}

/* ================================ */
/* 1. コンテナ・全体レイアウト */
/* ================================ */
#container {
  width: 1024px; /* 固定幅 */
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

/* ================================ */
/* 3. グローバルナビゲーション */
/* ※合唱団プロフィールと同じで変更なし */
/* ================================ */
/* 上記の#globalnavigation定義と重複します。どちらか一方にまとめるべきです。 */
#globalnavigation {
  position: relative;
  z-index: 19;
  max-width: 1024px;
  margin: 0 auto;
  background-color: #1f6ad6;
  box-sizing: border-box;
  overflow-x: auto;
}

#globalnavigation #navi ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around; /* 均等配置 */
  flex-wrap: nowrap; /* 折り返し禁止 */
}

#globalnavigation #navi li.navigation {
  /* flex-basisは削除。justify-contentで均等配置されるため不要、またはflex: 1;で均等幅にする */
  text-align: center;
}

#globalnavigation #navi li.navigation a {
  display: block;
  padding: 15px 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

#globalnavigation #navi li.navigation a:hover,
#globalnavigation #navi li.navigation.select a {
  background-color: #3b82f6;
}

/* ================================ */
/* 4. 募集ブロック全体 */
/* ================================ */
.recruit-wrapper {
  max-width: 1024px; /* containerが1024px固定なので、このmax-widthは冗長 */
  width: 100%;
  margin: 24px auto 10px; /* マジックナンバー */
  padding: 0 8px; /* マジックナンバー */
  box-sizing: border-box;
}

/* 募集ヘッダー */
.recruit-header {
  max-width: 1024px; /* containerが1024px固定なので、このmax-widthは冗長 */
  margin: 0 auto 40px; /* マジックナンバー */
  padding: 44px 20px 46px; /* マジックナンバー */
  background: linear-gradient(135deg, #1f6ad6 0%, #6ab0ff 50%, #3b82f6 100%);
  color: #fff;
  border-radius: 14px; /* マジックナンバー */
  box-shadow: 0 8px 22px -6px rgba(31, 106, 214, 0.6); /* マジックナンバー */
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

/* リクルートレイアウト - PCもスマホも横並び固定 */
.recruit-layout {
  display: flex;
  flex-direction: row;
  gap: 15px; /* マジックナンバー */
  align-items: flex-start;
  max-width: 1024px; /* containerが1024px固定なので、このmax-widthは冗長 */
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* サイドナビ */
nav.subnav {
  position: sticky;
  top: 90px; /* マジックナンバー: スクロール時に固定される位置 */
  flex-shrink: 0;
  width: 220px; /* マジックナンバー: サイドナビの幅 */
  font-size: 0.9rem;
  line-height: 1.3;
}

nav.subnav h2 {
  font-weight: 700;
  color: #1f6ad6;
  margin: 0 0 6px; /* マジックナンバー */
  font-size: 1.2rem;
  border-bottom: 2px solid #1f6ad6; /* マジックナンバー */
  padding-bottom: 4px; /* マジックナンバー */
}

nav.subnav ul {
  list-style: none;
  margin: 0;
  padding: 14px 12px; /* マジックナンバー */
  background: #ffffffcc;
  border-radius: 12px; /* マジックナンバー */
  box-shadow: 0 6px 18px rgba(31, 106, 214, 0.15); /* マジックナンバー */
  display: block;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

nav.subnav li {
  margin-bottom: 4px; /* マジックナンバー */
}

nav.subnav a {
  color: #1f6ad6;
  text-decoration: none;
  display: block;
  padding: 4px 2px; /* マジックナンバー */
  border-bottom: 1.5px solid transparent; /* マジックナンバー */
  transition: border-color 0.3s;
  font-size: 0.9rem;
}

nav.subnav a:hover,
nav.subnav a:focus {
  border-color: #3b82f6;
  outline: none;
}

/* メインコンテンツ */
main.recruit-content {
  flex-grow: 1;
  /* calc(1024px - 220px - 32px) の 32px は、gap + α の値か、recruit-wrapperのpaddingとサイドナビのマージンを考慮した値。 */
  /* 必要に応じて調整してください。 */
  max-width: calc(1024px - 220px - 32px);
  width: 100%;
  box-sizing: border-box;
}

/* 各セクションのデザイン */
main.recruit-content section {
  max-width: 100%;
  width: 100%;
  padding: 24px 20px; /* マジックナンバー */
  margin: 0 0 48px; /* マジックナンバー */
  border-radius: 22px; /* マジックナンバー */
  box-sizing: border-box;
  background: linear-gradient(145deg, #ffffff, #d9e8ff);
  box-shadow: 0 8px 20px rgba(31, 106, 214, 0.15), inset 0 0 8px rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.4s ease;
  word-wrap: break-word;
}

main.recruit-content section:hover {
  box-shadow: 0 12px 32px rgba(31, 106, 214, 0.35), inset 0 0 12px rgba(255, 255, 255, 0.8);
}

main.recruit-content h2 {
  position: relative;
  color: #1f6ad6;
  font-size: 2rem;
  margin: 0 0 26px; /* マジックナンバー */
  padding-bottom: 10px; /* マジックナンバー */
  font-weight: 900;
}

main.recruit-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px; /* マジックナンバー */
  height: 5px; /* マジックナンバー */
  border-radius: 3px; /* マジックナンバー */
  background: linear-gradient(90deg, #1f6ad6, #3b82f6, #6ab0ff);
}

main.recruit-content h3 {
  color: #34495e;
  margin: 14px 0 12px; /* マジックナンバー */
  font-size: 1.3rem;
  font-weight: 600;
}

main.recruit-content p {
  margin: 0 0 16px; /* マジックナンバー */
  font-size: 1.05rem;
  white-space: pre-line;
  color: #34495e;
  word-break: break-word;
}

main.recruit-content ul {
  list-style: disc;
  margin: 0 0 18px 1.6em; /* マジックナンバー */
  font-size: 1.05rem;
  color: #34495e;
}

main.recruit-content dl {
  margin-top: 12px; /* マジックナンバー */
}

main.recruit-content dt {
  font-weight: 700;
  margin-top: 20px; /* マジックナンバー */
  color: #1f6ad6;
  font-size: 1.1rem;
}

main.recruit-content dd {
  margin-left: 1.8em; /* マジックナンバー */
  margin-bottom: 16px; /* マジックナンバー */
  white-space: pre-line;
  font-size: 1.05rem;
  color: #3b4a6b;
}

.highlight-tag {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  padding: 0.15em 0.6em; /* マジックナンバー */
  border-radius: 12px; /* マジックナンバー */
  font-size: 1rem;
  margin-left: 6px; /* マジックナンバー */
  box-shadow: 0 3px 6px rgba(59, 130, 246, 0.4); /* マジックナンバー */
  user-select: none;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1f6ad6, #6ab0ff);
  color: #fff;
  font-weight: 700;
  padding: 14px 30px; /* マジックナンバー */
  border-radius: 30px; /* マジックナンバー */
  box-shadow: 0 6px 12px rgba(31, 106, 214, 0.5); /* マジックナンバー */
  text-decoration: none;
  transition: 0.3s;
  margin-top: 6px; /* マジックナンバー */
}

.cta-button:hover {
  background: linear-gradient(135deg, #3b82f6, #1f6ad6);
  box-shadow: 0 8px 20px rgba(31, 106, 214, 0.7); /* マジックナンバー */
  transform: translateY(-2px); /* マジックナンバー */
}

/* ================================ */
/* 5. 市民合唱団 スケジュール アコーディオン */
/* ================================ */
section.schedule-block {
  max-width: 1024px; /* containerが1024px固定なので、このmax-widthは冗長 */
  width: 100%;
  margin: 10px auto 60px; /* マジックナンバー */
  padding: 20px; /* マジックナンバー */
  background: #fff;
  border-radius: 16px; /* マジックナンバー */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* マジックナンバー */
  font-family: "Noto Sans JP", "Meiryo", sans-serif;
  box-sizing: border-box;
}

section.schedule-block h1,
section.schedule-block h2 {
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
  text-align: center;
  margin: 0 0 26px; /* マジックナンバー */
}

.accordion-item {
  border-radius: 12px; /* マジックナンバー */
  margin-top: 20px; /* マジックナンバー */
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* マジックナンバー */
  background: #f9fbff;
  box-sizing: border-box;
}

.accordion-title {
  background: linear-gradient(90deg, #005bac, #0073e6);
  color: #fff;
  padding: 15px 20px; /* マジックナンバー */
  cursor: pointer;
  position: relative;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-title::after {
  content: '＋';
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.accordion-title.active::after {
  content: '－';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease, padding 0.35s ease;
  padding: 0 20px; /* マジックナンバー */
  background: #f9fbff;
  box-sizing: border-box;
}

.accordion-content.open {
  padding: 20px; /* マジックナンバー */
  max-height: 1200px; /* マジックナンバー: 展開時の最大高さ */
}

.table-wrapper {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 15px; /* マジックナンバー */
  font-size: 0.95rem;
  box-sizing: border-box;
}

.schedule-table thead th {
  background: #005bac;
  color: #fff;
  padding: 10px; /* マジックナンバー */
  text-align: center;
  white-space: nowrap;
}

.schedule-table tbody td {
  padding: 10px; /* マジックナンバー */
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  white-space: nowrap;
}

.schedule-table tbody tr:nth-child(odd) td {
  background: #f0f4ff;
}

.schedule-memo {
  margin: 4px 0 0; /* マジックナンバー */
  color: #003a6f;
  font-weight: 600;
  font-size: 0.85rem;
}

.flyer-section {
  text-align: center;
  margin-top: 30px; /* マジックナンバー */
  box-sizing: border-box;
}

.flyer-section img {
  border: 4px solid gold; /* マジックナンバー */
  border-radius: 10px; /* マジックナンバー */
  margin: 10px; /* マジックナンバー */
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.5); /* マジックナンバー */
  transition: transform 0.3s;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.flyer-section img:hover {
  transform: scale(1.05); /* マジックナンバー */
}

.flyer-section a.download-link {
  display: block;
  margin-top: 10px; /* マジックナンバー */
  font-weight: bold;
  color: #1f6ad6;
  text-decoration: none;
}

.flyer-section a.download-link:hover {
  text-decoration: underline;
}

/* ================================ */
/* 6. 参加申込フォーム */
/* ================================ */
section.form-wrapper {
  max-width: 720px; /* マジックナンバー */
  width: 100%;
  margin: 70px auto 80px; /* マジックナンバー */
  background: #fff;
  padding: 34px 30px 46px; /* マジックナンバー */
  border-radius: 16px; /* マジックナンバー */
  box-shadow: 0 4px 18px -4px rgba(0, 0, 0, 0.18); /* マジックナンバー */
  position: relative;
  font-family: "Meiryo", "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

h2#form-title {
  margin: 0 0 22px; /* マジックナンバー */
  font-size: 1.95rem;
  text-align: center;
  letter-spacing: 0.06em;
  color: #1f6ad6;
  font-weight: 700;
  position: relative;
}

h2#form-title:after {
  content: "";
  display: block;
  width: 80px; /* マジックナンバー */
  height: 4px; /* マジックナンバー */
  margin: 12px auto 0; /* マジックナンバー */
  background: linear-gradient(90deg, #d4af37, #1f6ad6);
  border-radius: 2px; /* マジックナンバー */
}

form#entry-form {
  display: grid;
  gap: 20px; /* マジックナンバー */
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-weight: 600;
  margin-bottom: 6px; /* マジックナンバー */
  font-size: 0.95rem;
}

.field label .req {
  color: #d4af37;
  margin-left: 0.3em; /* マジックナンバー */
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  font: inherit;
  line-height: 1.4;
  padding: 13px 15px; /* マジックナンバー */
  border: 1.5px solid #ddd; /* マジックナンバー */
  border-radius: 10px; /* マジックナンバー */
  font-size: 1rem;
  transition: border-color 0.3s;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  border-color: #1f6ad6;
  outline: none;
  box-shadow: 0 0 8px #3b82f6aa; /* マジックナンバー */
}

textarea {
  min-height: 100px; /* マジックナンバー */
  resize: vertical;
  font-family: "Meiryo", "Noto Sans JP", sans-serif;
}

.error-msg {
  color: #cc0000;
  font-size: 0.85rem;
  margin-top: 4px; /* マジックナンバー */
}

button.submit-btn {
  background: linear-gradient(135deg, #1f6ad6, #6ab0ff);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 30px; /* マジックナンバー */
  padding: 16px 0; /* マジックナンバー */
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(31, 106, 214, 0.5); /* マジックナンバー */
  transition: background 0.3s, transform 0.2s;
}

button.submit-btn:hover,
button.submit-btn:focus {
  background: linear-gradient(135deg, #3b82f6, #1f6ad6);
  transform: translateY(-2px); /* マジックナンバー */
  outline: none;
}

/* ================================ */
/* 7. フッター */
/* ================================ */
footer#footer {
  max-width: 1024px;
  width: 100%;
  margin: 60px auto 0 auto; /* マジックナンバー */
  background-color: #1f6ad6;
  color: #fff;
  text-align: center;
  padding: 12px 0; /* マジックナンバー */
  font-size: 14px; /* マジックナンバー */
  border-radius: 6px 6px 0 0; /* マジックナンバー */
  box-sizing: border-box;
}

/* ================================ */
/* 8. スクロールトップボタン */
/* ================================ */
#toTopBtn {
  position: fixed;
  bottom: 30px; /* マジックナンバー */
  right: 30px; /* マジックナンバー */
  background: #1f6ad6;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 52px; /* マジックナンバー */
  height: 52px; /* マジックナンバー */
  font-size: 24px; /* マジックナンバー */
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(31, 106, 214, 0.6); /* マジックナンバー */
  display: none; /* 初期状態は非表示 */
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: background 0.3s;
}

#toTopBtn:hover {
  background: #3b82f6;
}

/* ================================ */
/* 9. メディアクエリ - レスポンシブ解除 */
/* ================================ */
@media (max-width: 1024px) {
  /* min-width: 1024px; が設定されているため、基本的には常に1024px幅で表示されますが、 */
  /* もし将来的にレスポンシブ対応を行う場合のために残します。 */
  body {
    overflow-x: auto;
  }
  /* ここに1024px以下での特別ルールが必要であれば追加してください */
}
/* ================================
   合唱団プロフィール CSS 完全修正版
   スマホでもPCと同じ固定幅表示＋表示崩れ修正
================================= */

/* ================================
   ベース設定
================================= */
body {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  overflow-x: auto;
}

/* 全体コンテナ */
#container {
  width: 1024px !important;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* グローバルナビゲーション全体 */
#globalnavigation {
  width: 1024px !important;
  margin: 0 auto 0 auto;  /* ← ここを修正（margin-bottom: 0） */
  background-color: #1f6ad6;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(31, 106, 214, 0.3);
  overflow-x: auto;
  white-space: nowrap;
}


/* ================================
   ヘッダー（タイトル部分）
================================= */
header {
  background-color: #1f6ad6;
  color: #fff;
  padding: 32px 0;
  text-align: center;
  margin: 0 auto 24px;
  max-width: 1024px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  overflow: visible;
  word-break: break-word;
}

header h1 {
  margin: 0;
  padding: 0 20px;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

/* ================================
   レイアウト全体（最大幅1024px固定）
================================= */
.kobe-chorus-layout,
.layout {
  max-width: 1024px;
  width: 1024px !important;
  margin: 0 auto;
  padding: 24px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  display: flex;
  gap: 28px;
  box-sizing: border-box;
  overflow: visible;
}

.kobe-chorus-layout {
  background-color: #fafafa;
}

/* ================================
   サイドバーナビゲーション
================================= */
nav.sidebar {
  width: 240px !important;
  background-color: #f7f9fc;
  border-right: 1px solid #d8dde4;
  padding: 28px 24px;
  position: sticky;
  top: 20px;
  height: fit-content;
  border-radius: 6px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.04);
}

nav.sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

nav.sidebar ul li {
  margin-bottom: 18px;
}

nav.sidebar ul li a {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  color: #1a73e8;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

nav.sidebar ul li a:hover,
nav.sidebar ul li a:focus {
  color: #fff;
  background-color: #1a73e8;
  text-decoration: none;
  outline: none;
}

/* ================================
   メインコンテンツ
================================= */
main.content {
  flex: 1;
  background-color: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
}

/* ================================
   プロフィールセクション
================================= */
section.profile-section {
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px dashed #d0d7e1;
}

section.profile-section:last-child {
  border-bottom: none;
}

section.profile-section h2 {
  position: relative;
  font-size: 2rem;
  margin-bottom: 24px;
  padding-left: 18px;
  color: #2c3e50;
}

section.profile-section h2::after {
  content: "";
  display: block;
  width: 240px;
  height: 4px;
  background-color: #1a73e8;
  margin-top: 12px;
  margin-left: 18px;
  border-radius: 2px;
}

/* ================================
   ヒーローイメージ
================================= */
figure.hero-figure {
  margin: 0 0 36px 0;
  text-align: center;
}

figure.hero-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  border: 1px solid #d8dde4;
}

figure.hero-figure figcaption {
  font-size: 1rem;
  color: #555;
  margin-top: 14px;
  line-height: 1.6;
  white-space: pre-line;
}

/* ================================
   プロフィールテキスト
================================= */
.profile-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  text-align: justify;
  margin-bottom: 20px;
}

.profile-text .datestamp {
  font-size: 0.85rem;
  color: #6a6a6a;
  margin-top: 44px;
  text-align: right;
  font-style: italic;
  border-top: 1px solid #e8ebf0;
  padding-top: 12px;
}

/* ================================
   各人物プロフィール
================================= */
article.person {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 22px;
  border-bottom: 1px dotted #d0d7e1;
  position: relative;
  z-index: 0;
}

article.person:last-of-type {
  border-bottom: none;
}

article.person img {
  width: 140px;
  height: 210px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 28px;
  border: 4px solid #1a73e8;
  box-shadow: 0 5px 12px rgba(0,0,0,0.12);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.person-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.person-image-overlay.active {
  opacity: 1;
  visibility: visible;
}

.person-image-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.7);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.person-image-overlay.active img {
  transform: scale(1);
}

article.person .info {
  flex-grow: 1;
}

article.person .info h3 {
  font-size: 1.6rem;
  margin: 6px 0 12px 0;
  color: #2c3e50;
  line-height: 1.3;
}

article.person .info p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ================================
   作品リスト
================================= */
h3.小見出し,
h4.小見出し,
h4.subheading {
  font-size: 1.9rem;
  margin: 44px 0 24px 0;
  border-left: 6px solid #1a73e8;
  padding-left: 18px;
  color: #2c3e50;
  font-weight: 700;
}

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

ul.works-list li {
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #d0d7e1;
}

ul.works-list li:last-child {
  border-bottom: none;
}

ul.works-list .year {
  font-weight: bold;
  color: #1a73e8;
  margin-right: 12px;
  white-space: nowrap;
  font-size: 1.1rem;
}

ul.works-list .title {
  font-weight: 700;
  color: #333;
  display: inline-block;
  margin-bottom: 6px;
}

ul.works-list small {
  display: block;
  font-size: 0.95rem;
  color: #666;
  margin-top: 6px;
  line-height: 1.5;
}

ul.works-list .note {
  font-style: italic;
  color: #888;
  margin-top: 10px;
}

ul.works-list ul {
  list-style: disc;
  margin-left: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #555;
}

ul.works-list ul li {
  border-bottom: none;
  margin-bottom: 10px;
  font-size: 1rem;
}

/* ================================
   レスポンシブ解除（スマホでも固定幅）
================================= */
@media (max-width: 1024px) {}
@media (max-width: 768px) {}
@media (max-width: 480px) {}

/* ================================
   ページトップボタン
================================= */
#toTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: #1f6ad6;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

#toTopBtn:hover {
  background-color: #154a96;
}

/* ================================
   フッター
================================= */
footer#footer {
  width: 1024px !important;
  margin: 60px auto 0 auto;
  background-color: #1f6ad6;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  border-radius: 6px 6px 0 0;
  box-sizing: border-box;
}
/* ================================ */
/* 0. 団員・市民団員募集 */
/* ================================ */
* {
  box-sizing: border-box;
}
html, body {
  min-width: 1024px; /* スマホでもPC表示固定幅に */
  overflow-x: auto;
  margin: 0;
  padding: 0;
  font-family: "Meiryo", "メイリオ", "Noto Sans JP", system-ui, sans-serif;
  background: #f0f4fb;
  color: #2c3e50;
  line-height: 1.7;
}

/* ================================ */
/* 1. コンテナ・全体レイアウト */
/* ================================ */
#container {
  width: 1024px; /* 固定幅 */
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

/* ================================ */
/* 3. グローバルナビゲーション */
/* ※合唱団プロフィールと同じで変更なし */
/* ================================ */
#globalnavigation {
  position: relative;
  z-index: 19;
  max-width: 1024px;
  margin: 0 auto;
  background-color: #1f6ad6;
  box-sizing: border-box;
  overflow-x: auto;
}

#globalnavigation #navi ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap; /* 折り返し禁止 */
}

#globalnavigation #navi li.navigation {
  flex-basis: 18%;
  text-align: center;
}

#globalnavigation #navi li.navigation a {
  display: block;
  padding: 15px 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

#globalnavigation #navi li.navigation a:hover,
#globalnavigation #navi li.navigation.select a {
  background-color: #3b82f6;
}

/* ================================ */
/* 4. 募集ブロック全体 */
/* ================================ */
.recruit-wrapper {
  max-width: 1024px;
  width: 100%;
  margin: 24px auto 10px;
  padding: 0 8px;
  box-sizing: border-box;
}

/* 募集ヘッダー */
.recruit-header {
  max-width: 1024px;
  margin: 0 auto 40px;
  padding: 44px 20px 46px;
  background: linear-gradient(135deg, #1f6ad6 0%, #6ab0ff 50%, #3b82f6 100%);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px -6px rgba(31, 106, 214, 0.6);
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

/* リクルートレイアウト - PCもスマホも横並び固定 */
.recruit-layout {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-start;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* サイドナビ */
nav.subnav {
  position: sticky;
  top: 90px;
  flex-shrink: 0;
  width: 220px;
  font-size: 0.9rem;
  line-height: 1.3;
}

nav.subnav h2 {
  font-weight: 700;
  color: #1f6ad6;
  margin: 0 0 6px;
  font-size: 1.2rem;
  border-bottom: 2px solid #1f6ad6;
  padding-bottom: 4px;
}

nav.subnav ul {
  list-style: none;
  margin: 0;
  padding: 14px 12px;
  background: #ffffffcc;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(31, 106, 214, 0.15);
  display: block;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

nav.subnav li {
  margin-bottom: 4px;
}

nav.subnav a {
  color: #1f6ad6;
  text-decoration: none;
  display: block;
  padding: 4px 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.3s;
  font-size: 0.9rem;
}

nav.subnav a:hover,
nav.subnav a:focus {
  border-color: #3b82f6;
  outline: none;
}

/* メインコンテンツ */
main.recruit-content {
  flex-grow: 1;
  max-width: calc(1024px - 220px - 32px);
  width: 100%;
  box-sizing: border-box;
}

/* 各セクションのデザイン */
main.recruit-content section {
  max-width: 100%;
  width: 100%;
  padding: 24px 20px; /* パディングを少し控えめに */
  margin: 0 0 48px;
  border-radius: 22px;
  box-sizing: border-box;
  background: linear-gradient(145deg, #ffffff, #d9e8ff);
  box-shadow: 0 8px 20px rgba(31, 106, 214, 0.15), inset 0 0 8px rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.4s ease;
  word-wrap: break-word;
}

main.recruit-content section:hover {
  box-shadow: 0 12px 32px rgba(31, 106, 214, 0.35), inset 0 0 12px rgba(255, 255, 255, 0.8);
}

main.recruit-content h2 {
  position: relative;
  color: #1f6ad6;
  font-size: 2rem;
  margin: 0 0 26px;
  padding-bottom: 10px;
  font-weight: 900;
}

main.recruit-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #1f6ad6, #3b82f6, #6ab0ff);
}

main.recruit-content h3 {
  color: #34495e;
  margin: 14px 0 12px;
  font-size: 1.3rem;
  font-weight: 600;
}

main.recruit-content p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  white-space: pre-line;
  color: #34495e;
  word-break: break-word;
}

main.recruit-content ul {
  list-style: disc;
  margin: 0 0 18px 1.6em;
  font-size: 1.05rem;
  color: #34495e;
}

main.recruit-content dl {
  margin-top: 12px;
}

main.recruit-content dt {
  font-weight: 700;
  margin-top: 20px;
  color: #1f6ad6;
  font-size: 1.1rem;
}

main.recruit-content dd {
  margin-left: 1.8em;
  margin-bottom: 16px;
  white-space: pre-line;
  font-size: 1.05rem;
  color: #3b4a6b;
}

.highlight-tag {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  padding: 0.15em 0.6em;
  border-radius: 12px;
  font-size: 1rem;
  margin-left: 6px;
  box-shadow: 0 3px 6px rgba(59, 130, 246, 0.4);
  user-select: none;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1f6ad6, #6ab0ff);
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(31, 106, 214, 0.5);
  text-decoration: none;
  transition: 0.3s;
  margin-top: 6px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #3b82f6, #1f6ad6);
  box-shadow: 0 8px 20px rgba(31, 106, 214, 0.7);
  transform: translateY(-2px);
}

/* ================================ */
/* 5. 市民合唱団 スケジュール アコーディオン */
/* ================================ */
section.schedule-block {
  max-width: 1024px;
  width: 100%;
  margin: 10px auto 60px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-family: "Noto Sans JP", "Meiryo", sans-serif;
  box-sizing: border-box;
}

section.schedule-block h1,
section.schedule-block h2 {
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
  text-align: center;
  margin: 0 0 26px;
}

.accordion-item {
  border-radius: 12px;
  margin-top: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  background: #f9fbff;
  box-sizing: border-box;
}

.accordion-title {
  background: linear-gradient(90deg, #005bac, #0073e6);
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-title::after {
  content: '＋';
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.accordion-title.active::after {
  content: '－';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease, padding 0.35s ease;
  padding: 0 20px;
  background: #f9fbff;
  box-sizing: border-box;
}

.accordion-content.open {
  padding: 20px;
  max-height: 1200px;
}

.table-wrapper {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 15px;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.schedule-table thead th {
  background: #005bac;
  color: #fff;
  padding: 10px;
  text-align: center;
  white-space: nowrap;
}

.schedule-table tbody td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  white-space: nowrap;
}

.schedule-table tbody tr:nth-child(odd) td {
  background: #f0f4ff;
}

.schedule-memo {
  margin: 4px 0 0;
  color: #003a6f;
  font-weight: 600;
  font-size: 0.85rem;
}

.flyer-section {
  text-align: center;
  margin-top: 30px;
  box-sizing: border-box;
}

.flyer-section img {
  border: 4px solid gold;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
  transition: transform 0.3s;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.flyer-section img:hover {
  transform: scale(1.05);
}

.flyer-section a.download-link {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #1f6ad6;
  text-decoration: none;
}

.flyer-section a.download-link:hover {
  text-decoration: underline;
}

/* ================================ */
/* 6. 参加申込フォーム */
/* ================================ */
section.form-wrapper {
  max-width: 720px;
  width: 100%;
  margin: 70px auto 80px;
  background: #fff;
  padding: 34px 30px 46px;
  border-radius: 16px;
  box-shadow: 0 4px 18px -4px rgba(0, 0, 0, 0.18);
  position: relative;
  font-family: "Meiryo", "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

h2#form-title {
  margin: 0 0 22px;
  font-size: 1.95rem;
  text-align: center;
  letter-spacing: 0.06em;
  color: #1f6ad6;
  font-weight: 700;
  position: relative;
}

h2#form-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #d4af37, #1f6ad6);
  border-radius: 2px;
}

form#entry-form {
  display: grid;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.field label .req {
  color: #d4af37;
  margin-left: 0.3em;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  font: inherit;
  line-height: 1.4;
  padding: 13px 15px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  border-color: #1f6ad6;
  outline: none;
  box-shadow: 0 0 8px #3b82f6aa;
}

textarea {
  min-height: 100px;
  resize: vertical;
  font-family: "Meiryo", "Noto Sans JP", sans-serif;
}

.error-msg {
  color: #cc0000;
  font-size: 0.85rem;
  margin-top: 4px;
}

button.submit-btn {
  background: linear-gradient(135deg, #1f6ad6, #6ab0ff);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 16px 0;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(31, 106, 214, 0.5);
  transition: background 0.3s, transform 0.2s;
}

button.submit-btn:hover,
button.submit-btn:focus {
  background: linear-gradient(135deg, #3b82f6, #1f6ad6);
  transform: translateY(-2px);
  outline: none;
}

/* ================================ */
/* 7. フッター */
/* ================================ */
footer.site-footer {
  max-width: 1024px;
  margin: 40px auto 60px;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
}

/* ================================ */
/* 8. スクロールトップボタン */
/* ================================ */
#toTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1f6ad6;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(31, 106, 214, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: background 0.3s;
}

#toTopBtn:hover {
  background: #3b82f6;
}

/* ================================ */
/* 9. メディアクエリ - レスポンシブ解除 */
/* ================================ */
@media (max-width: 1024px) {
  html, body, #container, #globalnavigation,
  .recruit-wrapper, section.schedule
}

/* ================================ */
/* 神戸音楽センター会館 */
/* ================================ */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #333;
  margin: 0;
  background: #fdfdfd;
}
header {
  background: #8b0000;
  color: #fff;
  padding: 20px;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 1.8rem;
}
.tagline {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: 600;
}
.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
section {
  margin-bottom: 40px;
}
h2 {
  border-left: 6px solid #8b0000;
  padding-left: 10px;
  margin-bottom: 15px;
  color: #8b0000;
  font-size: 1.4rem;
}
img {
  max-width: 100%;
  height: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 20px;
}
table th,
table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}
table th {
  background: #f5f5f5;
}
.button {
  display: inline-block;
  background: #8b0000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.button:hover,
.button:focus {
  opacity: 0.85;
}
iframe {
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 20px;
}

/* ギャラリー */
.area-gallery,
.facility-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.area-gallery img,
.facility-gallery img {
  width: 200px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.area-gallery img:hover,
.facility-gallery img:hover {
  transform: scale(1.05);
}

/* カード */
.facility-card {
  background: #fff;
  border: 1px solid #ddd;
  border-left: 6px solid #8b0000;
  padding: 20px;
  margin-bottom: 50px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.facility-card > h2 {
  border-left: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 15px;
  color: #8b0000;
  font-size: 1.5rem;
}
.facility-meta {
  margin: 0 0 10px;
  font-weight: bold;
  color: #555;
  font-size: 0.95rem;
}
.facility-features {
  margin: 0 0 15px;
  padding-left: 1.2em;
  font-size: 0.95rem;
}
.facility-features li {
  margin-bottom: 4px;
}
.price-note {
  font-size: 0.875rem;
  color: #555;
  margin-top: -5px;
  margin-bottom: 20px;
}

/* Sticky CTA */
.sticky-cta {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffdede;
  color: #000;
  padding: 6px 10px;
  text-align: center;
  font-size: 0.95rem;
}
.sticky-cta a {
  color: #8b0000;
  font-weight: bold;
  text-decoration: underline;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#lightbox img {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 0 20px #000;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 600px) {
  header h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .facility-card { padding: 16px; }
  .facility-card > h2 { font-size: 1.3rem; }
  .facility-gallery img,
  .area-gallery img { width: 45%; max-width: 160px; }
  .sticky-cta { font-size: 0.85rem; }
}

