/* 全体設定 */
body { 
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f4f4f9;
  color: #333;
}

/* ヘッダー設定 */
header {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 28px;
  font-weight: bold;
}

.nav-links {
  list-style-type: none;
}

.nav-links li {
  display: inline;
  margin: 0 20px;
}

.nav-links a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3498db;
}

/* メインコンテンツのスタイル */
#how-to-use {
  padding: 40px;
  background-color: #fff;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

p, ul, ol {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

ol {
  padding-left: 20px;
}

ul {
  padding-left: 20px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

/* ボタンスタイル */
.cta-button {
  display: inline-block;
  background-color: #2980b9;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #3498db;
}

/* イメージスタイル */
.step-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* フッターのスタイル */
footer {
  background: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #ecf0f1;
  text-decoration: none;
}

footer a:hover {
  color: #3498db;
}

u{
  background: linear-gradient(transparent 70%, rgba(146, 236, 124, 0.986) 70%);
  margin: 15px;
}

/* メディアクエリ（スマートフォン対応） */
@media (max-width: 600px) {
  .nav-links li {
      display: block;
      margin: 15px 0;
  }

  .cta-button {
      width: 100%;
      text-align: center;
  }

  #how-to-use {
      padding: 20px;
  }
}
