/* ============================================================
   AZ Amazon LP $2014 style.css  v3
   完全独立HTMLファイル用。WP対策不要のクリーンな実装。
   ============================================================ */

/* ── リセット ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── CSS変数 ── */
:root {
  --pink:       #EE008C;
  --pink-light: #FF4DB3;
  --pink-pale:  #FFF0F8;
  --pink-mid:   #FFCCE8;
  --blue:       #0EA5E9;
  --blue-pale:  #F0F9FF;
  --amber:      #F59E0B;
  --amber-pale: #FFFBEB;
  --amber-mid:  #FDE68A;
  --gray-800:   #374151;
  --gray-600:   #4B5563;
  --gray-400:   #9CA3AF;
  --gray-200:   #E5E7EB;
  --gray-100:   #F3F4F6;
  --gray-50:    #F9FAFB;
  --white:      #FFFFFF;
  --max-w:      1060px;
  --radius:     10px;
  --radius-lg:  16px;
}

/* ── タイポグラフィ ── */
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-800);
  background: var(--white);
}

/* ── コンテナ ── */
.lp-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── セクション余白 ── */
.lp-section     { padding: 88px 0 112px; }
.lp-section-sm  { padding: 64px 0 80px; }

/* ── 見出し共通 ── */
.lp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-pale);
  border: 1px solid var(--pink-mid);
  padding: 3px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.lp-h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1.3;
  margin-bottom: 12px;
}
.lp-lead {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.85;
  max-width: 560px;
}
.lp-rule {
  width: 40px; height: 4px;
  background: var(--pink);
  border-radius: 99px;
  margin: 0 0 40px;
}
.is-center { text-align: center; }
.is-center .lp-lead  { margin: 0 auto; }
.is-center .lp-rule  { margin: 0 auto 40px; }

/* ── ボタン ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
  line-height: 1;
}
.lp-btn-primary { background: var(--pink); color: var(--white); }
.lp-btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(238,0,140,.28);
}
.lp-btn-outline { background: transparent; border-color: var(--pink); color: var(--pink); }
.lp-btn-outline:hover { background: var(--pink-pale); }
.lp-btn-white { background: var(--white); color: var(--pink); }
.lp-btn-white:hover { background: var(--pink-pale); transform: translateY(-2px); }
.lp-btn-lg { padding: 18px 52px; font-size: 17px; border-radius: 8px; }

/* ============================================================
   HEADER
   ============================================================ */
.lp-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255,255,255,.97);
  border-bottom: 3px solid var(--pink);
  box-shadow: 0 2px 16px rgba(238,0,140,.08);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.lp-logo-text { font-size: 22px; font-weight: 900; color: var(--gray-800); }
.lp-logo-text span { color: var(--pink); }
.lp-header-right { display: flex; align-items: center; gap: 24px; }
.lp-tel-block { text-align: right; line-height: 1.3; }
.lp-tel-note  { font-size: 11px; color: var(--gray-800); }
.lp-tel-num   { font-size: 20px; font-weight: 700; color: var(--gray-800); letter-spacing: .04em; }
.lp-tel-hours { font-size: 10px; color: var(--gray-800); }

/* ============================================================
   HERO（全幅背景画像）
   ============================================================ */
.lp-hero {
  width: 100%;
  padding-top: 72px;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
	
  /*
    ★背景画像を設定する場合はここのコメントを外す
    background-image: url('images/hero.jpg');
    または index.html の section タグに
    style="background-image:url('images/hero.jpg')"
    を追加してください
  */
  background-color: var(--pink-pale);
  background-size: cover;
  background-position: center;
}
/* 左→右でフェードするオーバーレイ */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.92) 0%,
    rgba(255,255,255,.75) 55%,
    rgba(255,255,255,.20) 100%
  );
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.lp-hero-text { flex: 1; min-width: 0; }
.lp-hero-form { width: 380px; flex-shrink: 0; }

.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-pale);
  border: 1px solid var(--pink-mid);
  color: var(--pink);
  font-size: 12px; font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: .06em;
}
.lp-hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 16px;
}
.lp-hero h1 em { font-style: normal; color: var(--pink); }
.lp-hero-sub {
  font-size: 15px;
  font-weight: 900;
  color: var(--gray-800);
  margin-bottom: 28px;
  line-height: 1.8;
}
.lp-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.lp-hero-note { font-size: 12px; color: var(--gray-800); }

/* フォームボックス */
.lp-form-box {
/* 
  background: var(--white);
  border: 2px solid var(--pink-mid);
  border-radius: var(--radius-lg);
 */

  padding: 0px;
/*
  box-shadow: 0 8px 32px rgba(238,0,140,.12);
 */
}
.lp-form-box-title {
  font-size: 14px; font-weight: 700;
  color: var(--gray-800);
  border-left: 4px solid var(--pink);
  padding-left: 10px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.lp-form-ph {
  border: 2px dashed var(--pink-mid);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  color: var(--gray-400);
  font-size: 13px;
  line-height: 1.8;
}
.lp-form-ph strong { display: block; color: var(--pink); font-size: 14px; margin-bottom: 6px; }
.lp-form-note { font-size: 11px; color: var(--gray-400); margin-top: 10px; text-align: center; }

/* ============================================================
   STATS（グレー帯）
   ============================================================ */
.lp-stats {
  width: 100%;
  background: var(--gray-600);
  padding: 44px 0;
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.lp-stat-item {
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-num {
  font-size: 48px; font-weight: 900;
  color: var(--amber);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -.02em;
}
.lp-stat-num sup, .lp-stat-num span { font-size: 26px; }
.lp-stat-label { font-size: 13px; font-weight: 900; color: rgba(255,255,255,.75); }
.lp-stat-note  { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ============================================================
   PROBLEMS（薄アンバー + 方眼パターン）
   ============================================================ */
.lp-problems {
  width: 100%;
  background-color: var(--amber-pale);
  background-image:
    linear-gradient(rgba(245,158,11,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
.lp-problems-illust { text-align: center; margin-bottom: 28px; }
.lp-problems-illust img { max-height: 200px; margin: 0 auto; }
.lp-problems-illust-ph {
  height: 140px;
  border: 2px dashed var(--amber-mid);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,.5);
  gap: 8px;
}
.lp-problems-grid {
  background: var(--amber);
  border-radius: var(--radius-lg);
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.lp-problem-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: background .2s;
}
.lp-problem-card:hover { background: var(--pink-pale); }
.lp-problem-card p { font-size: 14px; color: var(--gray-800); line-height: 1.65; }
.lp-problem-card p strong { color: var(--blue); }
.lp-problem-resolve {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--pink) 0%, #c2006f 100%);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
  color: var(--white);
}
.lp-problem-resolve p { font-size: 19px; font-weight: 700; line-height: 1.7; }
.lp-problem-resolve em {
  font-style: normal;
  background: rgba(255,255,255,.2);
  padding: 1px 6px; border-radius: 4px;
}

/* ============================================================
   REASONS（白背景）
   ============================================================ */
.lp-reasons { width: 100%; background: var(--white); }
.lp-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.lp-reason-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lp-reason-card:hover {
  border-color: var(--pink);
  box-shadow: 0 6px 24px rgba(238,0,140,.1);
  transform: translateY(-3px);
}
.lp-reason-num { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--blue); margin-bottom: 10px; }
.lp-reason-icon { font-size: 19px; font-weight: 700; margin-bottom: 14px; color: var(--pink); }
.lp-reason-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; line-height: 1.4; }
.lp-reason-card p { font-size: 14px; color: var(--gray-800); line-height: 1.8; }

/* ============================================================
   SERVICES（薄ブルー背景）
   ============================================================ */
.lp-services { width: 100%; background: var(--blue-pale); }
.lp-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.lp-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(14,165,233,.15);
  transition: box-shadow .2s;
}
.lp-service-card:hover { box-shadow: 0 6px 24px rgba(14,165,233,.12); }
.lp-service-badge {
  display: inline-block;
  background: var(--blue); color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 10px; border-radius: 4px;
  margin-bottom: 12px; text-transform: uppercase;
}
.lp-service-card h3 { font-size: 19px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; line-height: 1.4; }
.lp-service-card > p { font-size: 14px; color: var(--gray-800); line-height: 1.8; margin-bottom: 18px; }
.lp-service-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.lp-service-tag {
  background: var(--blue-pale); color: var(--blue);
  border: 1px solid rgba(14,165,233,.3);
  font-size: 12px; font-weight: 500;
  padding: 3px 11px; border-radius: 999px;
}

/* ============================================================
   RESULTS（白背景）
   ============================================================ */
.lp-results { width: 100%; background: var(--white); }
.lp-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.lp-result-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative; overflow: hidden;
}
.lp-result-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}
.lp-result-cat   { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; font-weight: 500; }
.lp-result-kpi   { font-size: 48px; font-weight: 700; color: var(--pink); line-height: 1; margin-bottom: 6px; letter-spacing: -.02em; }
.lp-result-kpi span { font-size: 24px; }
.lp-result-title { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.lp-result-body  { font-size: 13px; color: var(--gray-800); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.lp-cta-banner {
  width: 100%;
  background: linear-gradient(135deg, var(--pink) 0%, #c2006f 100%);
  padding: 72px 0; text-align: center;
}
.lp-cta-banner h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.lp-cta-banner p  { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.lp-cta-note      { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 12px; }

/* ============================================================
   FLOW（薄グレー背景）
   ============================================================ */
.lp-flow { width: 100%; background: var(--gray-50); }
.lp-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 48px;
  position: relative;
}
.lp-flow-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--pink-mid); z-index: 0;
}
.lp-flow-step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.lp-flow-num {
  width: 64px; height: 64px;
  background: var(--pink); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(238,0,140,.3);
}
.lp-flow-step h4 { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.lp-flow-step p  { font-size: 13px; color: var(--gray-800); line-height: 1.7; }

/* ============================================================
   FAQ（薄アンバー背景）
   ============================================================ */
.lp-faq { width: 100%; background: var(--amber-pale); }
.lp-faq-list { max-width: 700px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.lp-faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden; transition: box-shadow .2s;
}
.lp-faq-item.is-open { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.lp-faq-q {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; cursor: pointer; user-select: none;
  font-weight: 700; font-size: 15px; color: var(--gray-800);
}
.lp-faq-q-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--pink-pale); color: var(--pink);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
}
.lp-faq-q-text { flex: 1; }
.lp-faq-toggle {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 2px solid var(--gray-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray-400);
  transition: transform .25s, background .2s;
}
.lp-faq-item.is-open .lp-faq-toggle {
  background: var(--pink); border-color: var(--pink);
  color: var(--white); transform: rotate(45deg);
}
.lp-faq-a {
  display: none;
  padding: 14px 20px 18px 62px;
  font-size: 14px; color: var(--gray-800); line-height: 1.8;
  border-top: 1px solid var(--gray-200);
}
.lp-faq-item.is-open .lp-faq-a { display: block; }

/* ============================================================
   COMPANY（白背景）
   ============================================================ */
.lp-company { width: 100%; background: var(--white); }
.lp-company-table {
  width: 100%; max-width: 680px;
  margin: 40px auto 0;
  border-collapse: collapse; font-size: 14px;
}
.lp-company-table tr { border-bottom: 1px solid var(--gray-200); }
.lp-company-table th {
  width: 32%; padding: 14px 18px;
  text-align: left; font-weight: 700;
  color: var(--gray-800); background: var(--gray-50);
  vertical-align: top;
}
.lp-company-table td { padding: 14px 18px; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   CONTACT（薄ブルー背景）
   ============================================================ */
.lp-contact { width: 100%; background: var(--blue-pale); }
.lp-contact-wrap {
  max-width: 620px; margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid rgba(14,165,233,.2);
  box-shadow: 0 4px 24px rgba(14,165,233,.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  width: 100%;
  background: var(--gray-600);
  color: rgba(255,255,255,.55);
  padding: 32px 0; text-align: center; font-size: 13px;
}
.lp-footer-links {
  display: flex; justify-content: center;
  gap: 24px; margin-bottom: 12px; flex-wrap: wrap;
}
.lp-footer-links a { color: rgba(255,255,255,.6); transition: color .2s; }
.lp-footer-links a:hover { color: var(--pink); }

/* ============================================================
   背景画像ユーティリティ
   使い方: セクションに class="lp-bg-image" を追加し
   style="--bg-url: url('images/xxx.jpg')" を指定
   ============================================================ */
.lp-bg-image {
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  position: relative;
}
.lp-bg-image > .lp-inner { position: relative; z-index: 1; }
.lp-bg-image::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.82); z-index: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .lp-hero-inner { flex-direction: column; gap: 28px; }
  .lp-hero-form  { width: 100%; max-width: 480px; }
  .lp-hero::before { background: rgba(255,255,255,.88); }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 14px; }
  .lp-problems-grid { grid-template-columns: 1fr 1fr; }
  .lp-reasons-grid  { grid-template-columns: 1fr; gap: 14px; }
  .lp-services-grid { grid-template-columns: 1fr; }
  .lp-results-grid  { grid-template-columns: 1fr; }
  .lp-flow-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lp-flow-steps::before { display: none; }
  .lp-contact-wrap { padding: 32px 20px; }
  .lp-tel-block  { display: none; }
}
@media (max-width: 560px) {
  .lp-section    { padding: 64px 0 80px; }
  .lp-problems-grid { grid-template-columns: 1fr; }
  .lp-flow-steps { grid-template-columns: 1fr; }
  .lp-btn-lg     { padding: 16px 28px; font-size: 15px; }
  .lp-problem-resolve { padding: 24px 20px; }
  .lp-problem-resolve p { font-size: 16px; }
}
