/* 全体のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ボディ全体 */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #000000;
}

/* コンテナ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ヘッダー */
.site-header {
  background-color: #ffffff;
  color: #000000;
  padding: 20px 0;
}

.site-header .logo {
  font-size: 24px;
  font-weight: bold;
}

.site-header nav ul {
  display: flex;
  justify-content: flex-end;
}

.site-header nav ul li {
  margin-left: 40px;
}

.site-header nav ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
}

/* ヒーローセクション */
.hero {
  background-image: url('woman.png'); /* 背景画像 */
  background-size: cover; /* 背景画像がセクション全体を覆うように設定 */
  background-position: top center; /* 画像の上部分を表示、中心部分を優先 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  color: #fff;
  padding: 400px 0;
  text-align: center;
}


.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
}

/* セクション */
.section {
  padding: 40px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
}

/* Aboutセクション */
#about {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

/* featureセクション */
#feature {
  background: linear-gradient(135deg, #ff4081 0%, #ffd700 100%);
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* feature */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* ← 幅を広めに */
  gap: 24px;
}

.feature-card {
  background-color: #f9f9f9;
  padding: 30px; /* ← 内側の余白も広く */
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* ← 少し立体感を追加 */
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px); /* ← ホバー時にふわっと浮く */
}


.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  color: #555;
}


/* フォーム */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 18px;
  margin-bottom: 5px;
}

input, select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

input[type="date"], select {
  width: 100%;
}

button[type="submit"] {
  padding: 12px;
  font-size: 18px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

/* エラーメッセージ */
.error-message {
  color: red;
  font-size: 14px;
}

/* SNSリンク */
.sns-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.sns-links a {
  text-decoration: none;
  color: #007BFF;
  font-size: 18px;
  margin: 0 10px;
}

.sns-links a:hover {
  text-decoration: underline;
}

/* AOS用 初期状態 */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}