/* ============================================================
   officeueda LP — style.css
   ブランドカラー: #0068b7（青）/ #dd9933（オレンジ・CTA）
   背景色:  #ebffff（ライトシアン）/ #fff（白）
   ============================================================ */

/* ---------- リセット & ベース ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lp-body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- レイアウト ---------- */
.lp-section {
  padding: 72px 24px;
}
.lp-section--light { background: #ebffff; }
.lp-section--white { background: #ffffff; }
.lp-section--dark  { background: #0068b7; color: #fff; }

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

/* ---------- タイポグラフィ ---------- */
.lp-body h1, .lp-body h2, .lp-body h3 {
  color: #0068b7;
  line-height: 1.4;
  font-weight: 900;
}
.lp-section--dark h1,
.lp-section--dark h2,
.lp-section--dark h3 { color: #fff; }

.lp-h1 { font-size: clamp(26px, 4vw, 48px); }
.lp-h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; }
.lp-h3 { font-size: clamp(16px, 2.2vw, 20px); margin-bottom: 10px; }

.lp-lead {
  font-size: clamp(16px, 2vw, 18px);
  color: #555;
  margin-bottom: 40px;
}
.lp-section--dark .lp-lead { color: rgba(255,255,255,.88); }

/* ---------- ボタン ---------- */
.lp-btn {
  display: inline-block;
  background: #dd9933;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  padding: 18px 44px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  letter-spacing: .06em;
  transition: opacity .2s, transform .15s;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(221,153,51,.35);
  white-space: nowrap;
}
.lp-btn:hover { opacity: .88; transform: translateY(-2px); }
.lp-btn:active { transform: translateY(0); }

.lp-btn--white {
  background: #fff;
  color: #0068b7;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.lp-btn--white:hover { opacity: .92; }

.lp-btn-wrap { text-align: center; margin-top: 36px; }

/* ---------- グリッド ---------- */
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}
.lp-grid-2--center { align-items: center; }

/* ---------- カード ---------- */
.lp-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,104,183,.08);
}
.lp-section--light .lp-card { background: #fff; }
.lp-section--white .lp-card {
  background: #f0f9ff;
  border: 1px solid #c8e6ff;
}

/* ---------- アイコン（選ばれる理由等） ---------- */
.lp-card__icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 16px;
}

/* ---------- タグバッジ ---------- */
.lp-badge {
  display: inline-block;
  font-size: 12px;
  background: #e8f4ff;
  color: #0068b7;
  border-radius: 4px;
  padding: 3px 10px;
  font-weight: bold;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ============================================================
   セクション別スタイル
   ============================================================ */

/* ── セクション1: FV ── */
.lp-fv {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('images/fv-bg.webp') center center / cover no-repeat;
  padding: 80px 24px;
}
.lp-fv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(235,255,255,.75);
}
.lp-fv__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.lp-fv__text { flex: 1; }
.lp-fv__catch {
  font-size: clamp(28px, 4.5vw, 52px);
  color: #0068b7;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}
.lp-fv__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: #333;
  margin-bottom: 36px;
  line-height: 1.7;
}
.lp-fv__photo {
  flex: 0 0 300px;
  text-align: center;
}
.lp-fv__photo img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(0,104,183,.18);
  margin: 0 auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.lp-fv__catch-area {
  font-size: .75em;
  font-weight: 700;
  display: block;
  margin-top: 8px;
}

/* ── セクション2: FV直下CTA ── */
.lp-cta-top { padding: 52px 24px; }
.lp-cta-top p { font-size: clamp(16px, 2vw, 18px); margin-bottom: 28px; line-height: 2; }

/* ── セクション3: 数字バー ── */
.lp-numbers { padding: 56px 24px; }
.lp-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
}
.lp-number-item {
  text-align: center;
  padding: 24px 16px;
}
.lp-number-item + .lp-number-item {
  border-left: 1px solid #d0eaff;
}
.lp-number-item__num {
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 900;
  color: #0068b7;
  line-height: 1;
}
.lp-number-item__unit {
  font-size: 20px;
  font-weight: bold;
  color: #0068b7;
  margin-top: 6px;
}
.lp-number-item__label {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}
.lp-number-item__unit--star {
  color: #dd9933;
}

/* ── セクション4: 課題提起 ── */
.lp-troubles__list {
  list-style: none;
  max-width: 680px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-troubles__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,104,183,.06);
  font-size: 16px;
}
.lp-troubles__item::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  background-color: #0068b7;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ── セクション5: 選ばれる理由 ── */
.lp-reasons .lp-card { text-align: center; }
.lp-reasons .lp-h3 { text-align: center; }
.lp-reasons .lp-card p {
  font-size: 15px;
  color: #555;
  margin-top: 12px;
  text-align: left;
}

/* ── セクション6: サービス一覧 ── */
.lp-services .lp-card {
  padding: 0;
  overflow: hidden;
}
.lp-service-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  display: block;
  margin: 0;
}
.lp-service-card__body {
  padding: 20px 20px 22px;
}
.lp-service-card__body h3 { margin-bottom: 8px; }
.lp-services .lp-card p { font-size: 14px; color: #555; margin-top: 8px; }

.lp-service-emergency {
  max-width: 360px;
  margin: 24px auto 0;
}
.lp-service-emergency .lp-card {
  padding: 0;
  overflow: hidden;
}

/* ── セクション7・11：中間CTA ── */
.lp-cta-mid { padding: 72px 24px; text-align: center; }
.lp-cta-mid h2 { margin-bottom: 18px; }
.lp-cta-mid p { font-size: 17px; opacity: .9; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── 制作フロー ── */
.lp-flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.lp-flow__steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #c8e6ff;
  z-index: 0;
}
.lp-flow__step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.lp-flow__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0068b7;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(0,104,183,.25);
}
.lp-flow__step h3 {
  font-size: 15px;
  color: #0068b7;
  margin-bottom: 8px;
}
.lp-flow__step p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ── セクション8: 制作実績 ── */
.lp-works__card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}
.lp-works__badge-wrap { margin-bottom: 12px; }
.lp-works__role {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}
.lp-works__card p { font-size: 15px; color: #555; margin-top: 10px; }
.lp-works__card .lp-btn { font-size: 14px; padding: 11px 24px; margin-top: 20px; }

.lp-works__empty {
  background: #f8f8f8;
  border: 2px dashed #ddd;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 24px;
  min-height: 260px;
}
.lp-works__empty-icon { font-size: 48px; color: #ccc; margin-bottom: 16px; }
.lp-works__empty h3 { color: #aaa; font-size: 18px; }
.lp-works__empty p { font-size: 15px; color: #999; margin-top: 10px; }

/* ── セクション9: お客様の声 ── */
.lp-reviews__widget { margin-top: 36px; }
.lp-reviews__link-wrap { text-align: center; margin-top: 28px; }
.lp-reviews__link {
  color: #0068b7;
  font-weight: bold;
  font-size: 15px;
  text-decoration: underline;
}
.lp-reviews__link:hover { opacity: .75; }

/* ── セクション10: 代表プロフィール ── */
.lp-profile__photo img {
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,104,183,.12);
  margin: 0 auto;
}
.lp-profile__text { padding: 8px 0; }
.lp-profile__text p { color: #444; }
.lp-profile__text p + p { margin-top: 14px; }

/* ── セクション12: FAQ ── */
.lp-faq__list {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,104,183,.06);
  overflow: hidden;
}
.lp-faq__item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: bold;
  color: #0068b7;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: "＋";
  font-size: 22px;
  font-weight: 400;
  color: #0068b7;
  flex-shrink: 0;
  transition: transform .2s;
}
.lp-faq__item[open] summary::after {
  content: "－";
}
.lp-faq__answer {
  padding: 0 24px 20px;
  color: #555;
  font-size: 15px;
  border-top: 1px solid #d0eaff;
}
.lp-faq__answer p { margin-top: 14px; }

/* ── セクション13: フッター前CTA（フォーム） ── */
.lp-form-section { padding: 88px 24px; }
.lp-form-section h2 { text-align: center; margin-bottom: 16px; font-size: clamp(24px, 3.5vw, 38px); }
.lp-form-section .lp-form-lead {
  text-align: center;
  font-size: 17px;
  opacity: .92;
  margin-bottom: 44px;
  line-height: 2;
}
.lp-form-wrap { max-width: 600px; margin: 0 auto; }

/* CF7 上書き */
.lp-form-section .wpcf7 input[type="text"],
.lp-form-section .wpcf7 input[type="email"],
.lp-form-section .wpcf7 input[type="tel"],
.lp-form-section .wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
  font-family: inherit;
  background: rgba(255,255,255,.95);
}
.lp-form-section .wpcf7 textarea { resize: vertical; min-height: 120px; }
.lp-form-section .wpcf7 input[type="submit"] {
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 24px auto 0;
  padding: 18px;
  background: #dd9933;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: .06em;
  transition: opacity .2s;
  box-shadow: 0 4px 16px rgba(221,153,51,.35);
}
.lp-form-section .wpcf7 input[type="submit"]:hover { opacity: .88; }
.lp-form-section .wpcf7-form-control-wrap { display: block; margin-bottom: 12px; }
.lp-form-section .wpcf7 label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  opacity: .88;
}
.lp-form__privacy {
  text-align: center;
  font-size: 13px;
  opacity: .75;
  margin-top: 16px;
}
.lp-form__privacy a { text-decoration: underline; color: #fff; }
.lp-form__required { color: #ffaaaa; font-size: 12px; margin-left: 4px; }
.lp-form-line {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 32px;
}
.lp-form-line__text {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.lp-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06c755;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .2s;
}
.lp-btn-line:hover { opacity: .85; }
.lp-works__result {
  background: #ebffff;
  border-left: 4px solid #0068b7;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 0;
}
.lp-works__result-item {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin: 0;
}
.lp-works__result-item strong {
  color: #0068b7;
  font-size: 17px;
}

/* ============================================================
   フッター（LP専用ミニフッター）
   ============================================================ */
.lp-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
}
.lp-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.lp-footer a:hover { color: #fff; }
.lp-footer__links { margin-bottom: 10px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   固定CTA（スマホ下部）
   ============================================================ */
.lp-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #dd9933;
  z-index: 999;
  padding: 14px 24px;
  text-align: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
.lp-fixed-cta a {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  display: block;
  letter-spacing: .04em;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 900px) {
  .lp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .lp-flow__steps { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .lp-flow__steps::before { display: none; }
}

@media (max-width: 640px) {
  .lp-flow__steps { grid-template-columns: 1fr; gap: 24px; }
  .lp-section { padding: 52px 20px; }
  .lp-numbers { padding: 40px 20px; }

  /* FV */
  .lp-fv__inner { flex-direction: column-reverse; gap: 24px; }
  .lp-fv__photo { flex: none; width: 100%; }
  .lp-fv__photo img { max-width: 260px; }
  .lp-fv__text { text-align: center; }

  /* グリッド */
  .lp-grid-3, .lp-grid-2 { grid-template-columns: 1fr; gap: 16px; }
  .lp-numbers__grid { grid-template-columns: 1fr; }
  .lp-number-item + .lp-number-item { border-left: none; border-top: 1px solid #d0eaff; }

  /* プロフィール */
  .lp-profile__photo { text-align: center; }

  /* 緊急対応カード */
  /* 固定CTA表示 */
  .lp-fixed-cta { display: block; }
  .lp-body { padding-bottom: 60px; }
}

@media (max-width: 400px) {
  .lp-btn { padding: 16px 28px; font-size: 15px; }
}
