/* ==========================================
   キュア.jp ｜訪問マッサージ LP & チラシ統一CSS
   ------------------------------------------
   デザインテーマ：安心・清潔・やわらかさ
   カラー：淡青 #A8DADC ／ ベージュ #F8F9FA ／ 白 #FFFFFF
   フォント：Noto Sans JP, 游ゴシック
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
  font-family: "Noto Sans JP", "游ゴシック体", sans-serif;
  margin: 0;
  color: #333;
  background-color: #fff;
  line-height: 1.8;
}

/* ------------------------------
   基本構造
------------------------------ */
.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

h1, h2, h3 {
  color: #004d61;
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 1.8em;
}

h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.2em;
}

p {
  margin: 0 0 1em;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ------------------------------
   ヘッダー
------------------------------ */
.header {
  background-color: #A8DADC;
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4em;
  font-weight: bold;
}

.header-buttons .btn {
  margin-left: 8px;
}

/* ------------------------------
   ボタン共通
------------------------------ */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
  font-size: 1em;
}

.btn.call {
  background-color: #0077b6;
  color: #fff;
}

.btn.call:hover {
  background-color: #005f8a;
}

.btn.line {
  background-color: #06c755;
  color: #fff;
}

.btn.line:hover {
  background-color: #04a845;
}

.btn.big {
  display: block;
  text-align: center;
  margin: 10px auto;
  width: 90%;
  max-width: 300px;
  font-size: 1.2em;
}

/* ------------------------------
   ヒーローセクション
------------------------------ */
.hero {
  background: url("img/hero.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  background-color: #A8DADC;
}

.hero h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
}

.hero-buttons {
  margin-top: 20px;
}

/* ------------------------------
   セクション
------------------------------ */
.section {
  padding: 60px 0;
}

.section.bg-beige {
  background-color: #F8F9FA;
}

.section.bg-light {
  background-color: #E9F6F6;
}

/* ------------------------------
   悩みリスト
------------------------------ */
.problems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.problems li {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ------------------------------
   ポイントボックス
------------------------------ */
.points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.point {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 20px;
  width: 260px;
  text-align: center;
}

/* ------------------------------
   施術の流れ
------------------------------ */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.steps li {
  background-color: #fff;
  border-left: 5px solid #A8DADC;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ------------------------------
   スタッフ紹介
------------------------------ */
.staff {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.staff-card {
  width: 220px;
  text-align: center;
}

.staff-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* ------------------------------
   FAQ
------------------------------ */
.faq dt {
  font-weight: bold;
  margin-top: 20px;
}

.faq dd {
  margin: 5px 0 15px 0;
  padding-left: 10px;
  border-left: 3px solid #A8DADC;
}

/* ------------------------------
   CTA（最下部）
------------------------------ */
.cta {
  background-color: #A8DADC;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.cta-buttons {
  margin-top: 20px;
}

/* ------------------------------
   フッター
------------------------------ */
.footer {
  background-color: #004d61;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9em;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

/* ------------------------------
   固定フッター（スマホ）
------------------------------ */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #fff;
  border-top: 1px solid #ccc;
  padding: 10px 0;
  z-index: 999;
}

.fixed-footer .btn {
  flex: 1;
  margin: 0 5px;
  text-align: center;
  font-size: 1.1em;
}

/* ------------------------------
   印刷（チラシ化）最適化
------------------------------ */
@media print {
  .header, .fixed-footer {
    display: none;
  }
  .hero {
    background: none;
    color: #000;
    padding: 20px;
  }
  .btn {
    border: 1px solid #333;
    color: #000 !important;
    background: none !important;
  }
  body {
    font-size: 12pt;
  }
}
