body {
	max-width: 1800px;
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fff9f9;
  color: #333;
  line-height: 1.6;
}

/* ヘッダー */
header {
  background: #e91e63;
  color: white;
  padding: 1em 0;
  text-align: center;
}
header .logo img {
  width: 90%;
}
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 1em;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* メイン */
.container {
  padding: 0.5em;
  max-width: 960px;
  margin: auto;
  text-align: center;
}

.intro {
  margin-bottom: 3em;
}

.message .text-image-row {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 3em;
  flex-wrap: wrap;
}
.message .text-image-row.reverse {
  flex-direction: row-reverse;
}
.message img {
  width: 200px;
  border-radius: 10px;
}

/* CTAボタン */
.btn {
  display: inline-block;
  background: #e91e63;
  color: #fff;
  padding: 1em 2em;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #c2185b;
}
.cta {
  text-align: center;
  margin: 3em 0;
}

/* フッター */
footer {
  background: #f1f1f1;
  text-align: center;
  padding: 2em 0;
  margin-top: 3em;
  font-size: 0.9em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .text-image-row,
  .text-image-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .text-image-row img {
    width: 100%;
    max-width: 300px;
  }
}




/* 料金表スタイル */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 2em;
}
.pricing-table th,
.pricing-table td {
  border: 1px solid #ccc;
  padding: 1em;
  text-align: center;
  font-size: 0.95em;
}
.pricing-table thead {
  background-color: #e91e63;
  color: white;
}

/* 注意書きエリア */
.notes {
  background: #fff0f5;
  padding: 1.5em;
  border-radius: 8px;
  margin-bottom: 2em;
}
.notes h2 {
  margin-top: 0;
}
.notes ul {
  margin: 0;
  padding-left: 1.5em;
}
.notes ul li {
  list-style: none;
  margin-bottom: 0.5em;
}

/* レスポンシブ：料金表のスマホ表示を横スクロールにする */
@media (max-width: 768px) {
  .pricing-table table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}



.line-link {
  text-align: center;
  margin-top: 2em;
}

.btn {
  display: inline-block;
  background: #06C755; /* LINEカラー */
  color: #fff;
  padding: 0.8em 1.6em;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #05b14c;
}