/* =========================
   美容サロン向け 再来店CRM LP（完全版）
   ========================= */

/* ベース設定 */
* {
  box-sizing: border-box;
}

body {
  margin: 40px 0 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: #222;
  background: #fafafa;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

/* 全体の中央寄せコンテナ */
.lp-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

/* セクション全体（背景はここに付ける） */
.lp-section {
  width: 100%;
  padding: 56px 0 90px;
  background: #ffffff; /* デフォルト背景 */
  border-bottom: 1px solid #e0e0e0;
}

.lp-section:nth-of-type(even) {
  background: #fafafa; /* 偶数セクションの背景（任意）*/
}

.lp-section-title {
  font-size: 24px;
  font-weight: 700;
  padding-left: 14px;
  margin-bottom: 40px;
  position: relative;
  color: #222;
}

.lp-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(to top, #ff7b7b, #fa5454);
}


/* ---------- HERO ---------- */
.lp-hero {
  width: 100%;
  padding: 80px 0 90px;
  background: radial-gradient(circle at top, #ffe6e6 0, #fafafa 50%, #f3f3f3 100%);
}

.lp-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.lp-hero-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.lp-hero-sub {
  font-size: 18px;
  color: #444;
  margin: 50px 0 50px;
}

.lp-hero-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
}

.lp-btn-primary {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to right, #e53935, #ff7043);
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.15s ease;
}

.lp-btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* ---------- テキスト強調 ---------- */
.lp-highlight {
  color: #c62828;
  font-weight: 700;
}

/* ---------- 問題提起 ---------- */
.lp-voices {
  display: grid;
  gap: 10px;
  margin: 45px 0;
}

.lp-voice {
  background: #fffbcc;
  padding: 8px 12px;
  border-left: 4px solid #fdd835;
  font-size: 14px;
  max-width: 700px;
}

/* ---------- 2カラム ---------- */
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .lp-two-col {
    grid-template-columns: 1fr;
  }
}

.line-image {
  text-align: center;
  margin: 35px 0;
}

.line-image img {
  max-width: 100%;
  height: auto;
  padding: 10px;
  background-color: #ebe9e9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.line-note {
    text-align: center;
    color: #777;
    font-size: smaller;
}

.dashboard-image {
  text-align: center; /* 中央寄せ */
  margin: 0px 0 35px;
}

.dashboard-image img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border: 1px solid #9e9b9b;
}

.dashboard-note {
    text-align: center;
    color: #777;
    font-size: smaller;
    margin-top: 35px;
}

/* --- 通知あり/なし 比較セクション（lp-section互換） --- */

.lp-difference-section {
  background: #f8f8fc;
  padding: 60px 0;
}

.lp-diff-wrapper {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 32px;
}

.lp-diff-box {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.lp-diff-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e3e3e3;
}

/* before（通知あり）は赤系 */
.lp-diff-after {
  border-color: #f3d3d3;
}
.lp-diff-after .lp-diff-heading {
  color: #c62828;
  border-bottom-color: #f3d3d3;
}

/* after（通知なし）は青系 */
.lp-diff-before {
  border-color: #c6e4ff;
}
.lp-diff-before .lp-diff-heading {
  color: #2a5ca8;
  border-bottom-color: #c6e4ff;
}

.lp-diff-box ul {
  margin: 0;
  padding-left: 18px;
}
.lp-diff-box ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}

.lp-diff-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.lp-diff-bottom span {
  color: #c62828;
  font-weight: 700;
}

/* --- スマホ対応 --- */
@media (max-width: 767px) {
  .lp-difference-section {
    padding: 40px 0;
  }
  .lp-diff-wrapper {
    gap: 20px;
  }
  .lp-diff-box {
    padding: 20px;
  }
}

/* ---------- 機能一覧 ---------- */
.lp-feature-grid {
  display: grid;
  gap: 18px;
  margin-top: 45px;
}

.lp-feature-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px 18px;
  max-width: 700px;
  border-radius: 12px;
}

.lp-feature-title {
  font-size: 15px;
  font-weight: bold;
  color: #c62828;
  margin-bottom: 6px;
}

.lp-feature-desc {
  font-size: 13px;
  color: #444;
}

/* ---------- 料金セクション（アップデート版） ---------- */

/* 親：料金ボックスを横並びにする */
.lp-price-wrapper {
  display: flex;
  margin-top: 45px;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}

/* 子：各料金ボックス（カードUI） */
.lp-price-box {
  flex: 1;
  min-width: 300px;
  background: #fff8f8;
  border: 1px solid #ffd2d2;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* ホバー時：触った感（ふわっと浮く） */
.lp-price-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-color: #ffbcbc;
}

/* ラベル＋金額 → 縦並びに変更 */
.lp-price-row {
  display: flex;
  flex-direction: column;   /* ←横並び → 縦並びに */
  align-items: flex-start;
  gap: 4px;
}

/* ラベル */
.lp-price-label {
  font-size: 16px;
  font-weight: 700;
}

/* 金額（縦並びのため margin-top を少しつける） */
.lp-price-value {
  color: #b53535;
  font-size: 19px;
  font-weight: 700;
  margin-top: 4px;
}

/* 注記 */
.lp-price-note {
  font-size: 12px;
  color: #777;
  margin-top: 15px;
}

/* スマホ時：縦並びは既存のまま維持 */
@media (max-width: 767px) {
  .lp-price-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---------- 流れ ---------- */
.lp-flow-list {
  display: grid;
  gap: 14px;
}

.lp-flow-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 14px 16px;
  max-width: 700px;
  border-radius: 10px;
  font-size: 13px;
}

.lp-flow-step {
  font-weight: 700;
  color: #c62828;
  margin-bottom: 4px;
}

/* ---------- FAQ ---------- */
.lp-faq-list {
  display: grid;
  gap: 12px;
}

.lp-faq-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 14px 16px;
  max-width: 700px;
  border-radius: 10px;
}

.lp-faq-q {
  color: #c62828;
  font-weight: 700;
  font-size: 14px;
}

.lp-faq-a {
  font-size: 13px;
  color: #444;
}

/* ---------- CTA ---------- */
.lp-cta {
  text-align: center;
}

.lp-cta-text {
  font-size: 14px;
  color: #555;
  margin: 8px 0 16px;
}