/* ベースフォントとレイアウト */
body {
  font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  padding: 1em;
  max-width: 1200px;
  margin: 0 auto;
}

/* タイトル */
h1 {
  font-size: 2em;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* セクション見出し */
h2 {
  font-size: 1.4em;
  cursor: pointer;
  background-color: #f0f0f0;
  padding: 0.5em;
  border-left: 4px solid #888;
  margin-top: 1.5em;
}

h2:hover {
  background-color: #e0e0e0;
}

h3 {
  font-size: 1.2em;
  margin-top: 1em;
  font-weight: bold;
}

p, li {
  margin-bottom: 0.8em;
}

strong {
  font-weight: bold;
}

/* 折りたたみセクション */
.section-content {
  display: none;
  margin-left: 1em;
}

/* セレクトボックス */
select {
  font-size: 1em;
  padding: 0.5em;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

/* ボタン */
button {
  font-size: 1em;
  background-color: #007acc;
  color: white;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease, transform 0.1s ease;
}

button:hover {
  background-color: #005fa3;
  transform: translateY(-1px);
}

/* ナビゲーション */
nav {
  margin: 2em 0;
}

nav a {
  display: inline-block;
  margin-right: 1em;
  text-decoration: none;
  background-color: #007acc;
  color: white;
  padding: 0.5em 1em;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

nav a:hover {
  background-color: #005fa3;
}

/* 画像 */
img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

/* 矢印進捗エリア */
#arrow-progress-wrapper {
  position: relative;
  width: 100px;
  height: 60px;
  margin: 2em auto;
}

#arrow-outline {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* 矢印上のテキスト（進捗％） */
#progress-text {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.5em;
}

/* 画像表示エリア */
#image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* リスト */
ol {
  padding-left: 1.5em;
}

/* ヘッダーバー（固定進捗バー） */
#header-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #ddd; /* グレー背景 */
  z-index: 9999;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background-color: #00cc66; /* 明るめの緑 */
  transition: width 0.2s ease;
}

footer {
  border-top: 1px solid #ccc; /* 薄いグレーの線 */
  padding-top: 1em;           /* 線とテキストの間に余白 */
  margin-top: 3em;            /* 上との間隔 */
  color: #777;
  font-size: 0.8em;
  text-align: center;
  line-height: 1.6;
}

/* レスポンシブ調整 */
@media screen and (max-width: 600px) {
  body {
    font-size: 18px;
  }

  button {
    width: 100%;
  }

  #image-area {
    flex-direction: column;
    gap: 10px;
  }
}
