/* ベース設定 */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

/* ヘッダー */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #008080; /* ブランドカラー */
  padding: 15px 30px;
}

.logo img {
  height: 50px;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-menu a:hover {
  color: #ffcc00; /* アクセントカラー */
}

/* ヒーローセクション */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  background: #008080;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ffcc00;
  color: #333;
}

/* サービス内容 */
.features {
  max-width: 800px;
  margin: 60px auto;
  /* padding: 30px; */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.features h2 {
  text-align: center;
  color: #008080;
  margin-bottom: 20px;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  background: #f0f8f8;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
}

/* ご利用の流れ */
.steps {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.steps h2 {
  color: #008080;
  margin-bottom: 20px;
}

.step {
  background: #fff;
  margin: 15px auto;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 500px;
}

/* 料金プラン */
.pricing {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.pricing h2 {
  color: #008080;
  margin-bottom: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #ccc;
  padding: 12px;
}

.pricing-table th {
  background: #008080;
  color: #fff;
}

.pricing-table td {
  background: #fdfdfd;
}

/* 申し込みセクション */
.cta {
  text-align: center;
  margin: 60px auto;
}

.cta h2 {
  color: #008080;
  margin-bottom: 20px;
}

.title-bleed {
  position: relative;
  width: 100vw;               /* 画面幅いっぱい */
  left: 50%;
  transform: translateX(-50%);/* 中央に揃える */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 30px;
}

.title-bleed::before,
.title-bleed::after {
  content: "";
  flex: 1 1 auto;
  border-top: 2px solid #008080;
}

.title-bleed span {
  color: #008080;
  font-weight: 700;
  font-size: 1.6rem;
}


.target-note {
  background: #f0f8f8;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

.privacy-policy {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: #f9fdfd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  line-height: 1.8;
}

.privacy-policy h2 {
  text-align: center;
  color: #008080;
  margin-bottom: 30px;
}

.privacy-policy h3 {
  color: #008080;
  margin-top: 20px;
}



/* フッター */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.footer p {
  margin: 5px 0;
}

