/* 全体の基本設定 */
body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* ヘッダー */
header {
  background-color: #4a90e2;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #4a90e2;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e6e6e6;
}

/* セクション共通 */
section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #4a90e2;
}

/* リスト */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 15px;
  font-size: 1em;
}

/* デモギャラリー */
.demo-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-gallery img {
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* お問い合わせフォーム */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

form button {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

form button:hover {
  background-color: #357ab8;
}

/* フッター */
footer {
  background-color: #eee;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

footer nav a {
  margin: 0 10px;
  color: #4a90e2;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
}

/* パンくずリスト*/
.breadcrumb ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.5em;
  margin-left: 0.5em;
}

.breadcrumb li::after {
  content: ">";
  margin-left: 0.5em;
}

.breadcrumb li:last-child::after {
  content: "";
}
