/* 宣材写真撮影会LP（WordPress固定ページ専用）本サイトのCSSとは別ファイル
 * 親・WordPress既存CSSの干渉を防ぐため、body.profile-lp-page 配下で
 * フォント・カラーを各要素に明示指定しています。
 * WordPressでhtmlのrem基準が10pxの場合でもローカル（16px基準）と同じ見た目になるよう、
 * bodyで基準を16pxにし、フォントサイズはem（またはpx）で指定しています。
 */

:root {
  --color-primary: #0f172a;
  --color-primary-mid: #1e293b;
  --color-accent: #ea580c;
  --color-accent-hover: #c2410c;
  --color-white: #ffffff;
  --color-text: #1e293b;
  --color-text-sub: #64748b;
  --color-border: #e2e8f0;
  --color-bg: #f8fafc;
  --color-bg-dark: #0f172a;
  --container-max: 960px;
  --container-narrow: 560px;
  --container-max-bg: 1080px;
  --container-narrow-bg: 680px;
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /* フォントサイズ基準（WordPressの10px基準に左右されないよう16pxで固定） */
  --lp-font-base: 16px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-padding-top: 4.5rem;
}

/* ========== 親テーマ干渉防止：body を16px基準にし、フォント・カラーを明示 ========== */
body.profile-lp-page {
  margin: 0;
  font-family: var(--font);
  font-size: var(--lp-font-base);
  line-height: 1.75;
  color: #1e293b;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

body.profile-lp-page h1,
body.profile-lp-page h2,
body.profile-lp-page h3,
body.profile-lp-page h4,
body.profile-lp-page h5,
body.profile-lp-page h6 {
  font-family: var(--font);
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

body.profile-lp-page p {
  font-family: var(--font);
  font-size: 1em;
  line-height: 1.75;
  color: #1e293b;
  margin: 0;
}

body.profile-lp-page a {
  font-family: var(--font);
  color: inherit;
  text-decoration: none;
}

body.profile-lp-page ul,
body.profile-lp-page ol {
  font-family: var(--font);
  color: #1e293b;
}

body.profile-lp-page li {
  font-family: var(--font);
  color: inherit;
}

body.profile-lp-page table {
  font-family: var(--font);
}

body.profile-lp-page th,
body.profile-lp-page td {
  font-family: var(--font);
  color: inherit;
}

/* strong：デフォルトは親の色を継承。特定ブロック内では明示で色指定 */
body.profile-lp-page strong {
  font-weight: 700;
  color: inherit;
}

body.profile-lp-page span {
  font-family: inherit;
  color: inherit;
}

/* ページ表示時は非表示、hero通過後に上からスライドイン */
body.profile-lp-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

body.profile-lp-page .site-header.is-visible {
  transform: translateY(0);
}

body.profile-lp-page .site-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75em 1.25em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75em;
}

body.profile-lp-page .site-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25em 0.5em;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

body.profile-lp-page .site-nav-list a {
  display: block;
  padding: 0.35em 0.6em;
  font-family: var(--font);
  font-size: 0.8125em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

body.profile-lp-page .site-nav-list a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

body.profile-lp-page .site-nav-cta {
  margin-left: auto;
  padding: 0.5em 1em !important;
  background: #ea580c;
  color: #ffffff !important;
  font-family: var(--font);
  font-size: 1em;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.profile-lp-page .site-nav-cta:hover {
  background: #c2410c;
  color: #ffffff !important;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  html { scroll-padding-top: 3.5rem; }
  body.profile-lp-page .site-header-inner { padding: 0.5em 1em; }
  body.profile-lp-page .site-nav-list { gap: 0.2em 0.35em; }
  body.profile-lp-page .site-nav-list a { padding: 0.25em 0.45em; font-size: 0.75em; }
  body.profile-lp-page .site-nav-cta { padding: 0.4em 0.75em !important; font-size: 0.75em; }
}

body.profile-lp-page img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

body.profile-lp-page .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25em;
}

body.profile-lp-page .container--narrow { max-width: var(--container-narrow); }

body.profile-lp-page .section--light .container,
body.profile-lp-page .section--dark .container,
body.profile-lp-page .section--accent .container {
  max-width: var(--container-max-bg);
}
body.profile-lp-page .section--light .container--narrow,
body.profile-lp-page .section--dark .container--narrow,
body.profile-lp-page .section--accent .container--narrow {
  max-width: var(--container-narrow-bg);
}

body.profile-lp-page .container--center { text-align: center; }

body.profile-lp-page .content-reassure {
  font-family: var(--font);
  font-size: 0.9375em;
  color: #64748b;
  margin: 0.5em 0 1.5em 0;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}

body.profile-lp-page .hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 1.25em;
  overflow: hidden;
}

body.profile-lp-page .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.profile-lp-page .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: blur(2px) brightness(0.5) contrast(0.9);
}

body.profile-lp-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.5) 0%, rgba(15,23,42,0.85) 100%);
}

body.profile-lp-page .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
}

body.profile-lp-page .hero-kicker {
  font-family: var(--font);
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  margin: 0 0 1.25em 0;
  text-transform: uppercase;
}

body.profile-lp-page .hero-catch {
  font-family: var(--font);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 1.25em 0;
  letter-spacing: 0.02em;
}

body.profile-lp-page .hero-sub {
  font-family: var(--font);
  font-size: 1.125em;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin: 0 0 0.75em 0;
}

body.profile-lp-page .hero-lead {
  font-family: var(--font);
  font-size: 1em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 2em 0;
  line-height: 1.7;
}

body.profile-lp-page .hero-cta {
  display: inline-block;
  padding: 1em 2em;
  background: #ea580c;
  color: #ffffff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.0625em;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.profile-lp-page .hero-cta:hover {
  background: #c2410c;
  color: #ffffff;
  transform: translateY(-2px);
}

body.profile-lp-page .hero-micro {
  font-family: var(--font);
  font-size: 0.8125em;
  color: rgba(255,255,255,0.75);
  margin: 0.75em 0 0 0;
}

body.profile-lp-page .section {
  padding: 4em 0;
}

body.profile-lp-page .section--light {
  background: #f8fafc;
}

body.profile-lp-page .section--dark {
  background: #0f172a;
  color: #ffffff;
}

body.profile-lp-page .section--accent {
  background: #ea580c;
  color: #ffffff;
}

body.profile-lp-page .section-title {
  font-family: var(--font);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.02em;
}

body.profile-lp-page .section-title--center { text-align: center; }

body.profile-lp-page .section-title--light { color: #ffffff; }

body.profile-lp-page .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  margin-top: 0.5em;
}

body.profile-lp-page .card {
  padding: 1.5em;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

body.profile-lp-page .card-title {
  font-family: var(--font);
  font-size: 1em;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

body.profile-lp-page .card-title strong {
  color: #ea580c !important;
  font-weight: 700;
}

body.profile-lp-page .card-sub {
  font-family: var(--font);
  font-size: 0.875em;
  color: #64748b;
  margin: 0.5em 0 0 0;
  line-height: 1.5;
  text-align: center;
}

body.profile-lp-page .section-cta-wrap {
  margin-top: 1.5em;
  text-align: center;
}

body.profile-lp-page .btn-secondary {
  display: inline-block;
  padding: 0.75em 1.5em;
  border: 2px solid #ea580c;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9375em;
  color: #ea580c;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
body.profile-lp-page .btn-secondary:hover {
  background: #ea580c;
  color: #ffffff;
  transform: translateY(-2px);
}

body.profile-lp-page .section-cta-wrap--dark .btn-secondary--light {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

body.profile-lp-page .section-cta-wrap--dark .btn-secondary--light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

body.profile-lp-page .btn-secondary--light {
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}

@media (min-width: 768px) {
  body.profile-lp-page .cards { grid-template-columns: repeat(2, 1fr); gap: 1.25em; }
}

body.profile-lp-page .pattern-row {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 60vh;
}

body.profile-lp-page .pattern-visual { position: relative; min-height: 280px; }

body.profile-lp-page .pattern-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f8fafc;
}

body.profile-lp-page .pattern-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease;
}

body.profile-lp-page .pattern-img--default { z-index: 1; opacity: 1; }
body.profile-lp-page .pattern-img--hover { z-index: 2; opacity: 0; }
body.profile-lp-page .pattern-img-wrap:hover .pattern-img--hover { opacity: 1; }

@media (hover: none) {
  body.profile-lp-page .pattern-img--hover { animation: pattern-reveal 6s ease-in-out infinite; }
}
@keyframes pattern-reveal {
  0%, 45% { opacity: 0; }
  50%, 95% { opacity: 1; }
  100% { opacity: 0; }
}

body.profile-lp-page .pattern-img-wrap .pattern-img {
  object-fit: contain;
  object-position: center center;
}

body.profile-lp-page .pattern-content {
  padding: 2em 1.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

body.profile-lp-page .pattern-label {
  font-family: var(--font);
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ea580c;
  margin-bottom: 0.5em;
}

body.profile-lp-page .pattern-title {
  font-family: var(--font);
  font-size: 1.25em;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.75em 0;
}

body.profile-lp-page .pattern-desc {
  font-family: var(--font);
  font-size: 0.9375em;
  color: #64748b;
  margin: 0 0 1em 0;
  line-height: 1.7;
}

body.profile-lp-page .pattern-detail-table {
  width: 100%;
  margin: 0;
  font-family: var(--font);
  font-size: 0.875em;
  border-collapse: collapse;
  color: #64748b;
}
body.profile-lp-page .pattern-detail-table th {
  font-weight: 700;
  color: #1e293b;
  text-align: left;
  padding: 0.35em 0.75em 0.35em 0;
  vertical-align: top;
  width: 6em;
}
body.profile-lp-page .pattern-detail-table td {
  padding: 0.35em 0;
  color: #64748b;
}

body.profile-lp-page .pattern-row--reverse .pattern-content { order: -1; }

@media (min-width: 768px) {
  body.profile-lp-page .pattern-row {
    grid-template-columns: 1fr 1fr;
    gap: 0 2em;
    min-height: 0;
    align-items: center;
  }
  body.profile-lp-page .pattern-visual { min-height: 380px; }
  body.profile-lp-page .pattern-content { padding: 2.5em 1.5em; }
  body.profile-lp-page .pattern-row--reverse .pattern-content { order: 0; }
  body.profile-lp-page .pattern-row--reverse .pattern-visual { order: 0; }
}

body.profile-lp-page .flow-block {
  padding-top: 2em;
  border-top: 1px solid #e2e8f0;
  margin-top: 2em;
}
body.profile-lp-page .flow-block .flow-title:first-child { margin-top: 0; }
body.profile-lp-page .flow-title {
  font-family: var(--font);
  font-size: 1.125em;
  font-weight: 700;
  color: #1e293b;
  margin: 1.5em 0 0.5em 0;
}
body.profile-lp-page .flow-note {
  font-family: var(--font);
  font-size: 0.875em;
  color: #64748b;
  margin: 0 0 0.75em 0;
}
body.profile-lp-page .flow-list {
  list-style: none;
  padding: 0 0 0 1em;
  margin: 0 0 1em 0;
  border-left: 4px solid #ea580c;
}
body.profile-lp-page .flow-list li {
  margin-bottom: 0.35em;
  font-family: var(--font);
  font-size: 0.9375em;
  color: #1e293b;
}
body.profile-lp-page .flow-list--numbered {
  list-style: decimal;
  padding-left: 1.5em;
  border-left: none;
}
body.profile-lp-page .flow-list--numbered li { margin-bottom: 0.5em; }
body.profile-lp-page .supplement-block {
  margin-top: 1.5em;
  font-family: var(--font);
  font-size: 0.8125em;
  color: #64748b;
  line-height: 1.8;
}
body.profile-lp-page .supplement-block p { margin: 0 0 0.25em 0; }

body.profile-lp-page .price-block { overflow: hidden; }
body.profile-lp-page .price-date {
  font-family: var(--font);
  font-size: 0.9375em;
  color: rgba(255,255,255,0.9);
  margin: 0 0 0.5em 0;
}
body.profile-lp-page .price-main {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.25em 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
body.profile-lp-page .price-amount { white-space: nowrap; }
body.profile-lp-page .price-unit {
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 0.1em;
  flex-shrink: 0;
}
body.profile-lp-page .price-per {
  font-family: var(--font);
  font-size: 0.9375em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 1.25em 0;
}
body.profile-lp-page .condition-list {
  margin: 0;
  padding-left: 1.25em;
  font-family: var(--font);
  font-size: 0.9375em;
  color: rgba(255,255,255,0.9);
}
body.profile-lp-page .condition-list strong {
  color: rgba(255,255,255,0.95) !important;
  font-weight: 700;
}
body.profile-lp-page .condition-list--light li { margin-bottom: 0.5em; }
body.profile-lp-page .delivery-note {
  margin-top: 1em;
  padding: 1em;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.875em;
  color: rgba(255,255,255,0.9);
}
body.profile-lp-page .delivery-note strong {
  color: rgba(255,255,255,0.95) !important;
  font-weight: 700;
}
body.profile-lp-page .delivery-note p { margin: 0; }
body.profile-lp-page .cancel-block {
  margin-top: 1.5em;
  padding-top: 1.25em;
  border-top: 1px solid rgba(255,255,255,0.2);
}
body.profile-lp-page .cancel-heading {
  font-family: var(--font);
  font-size: 0.9375em;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5em 0;
}
body.profile-lp-page .cancel-text {
  font-family: var(--font);
  font-size: 0.875em;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}
body.profile-lp-page .cancel-table {
  width: 100%;
  margin-top: 0.75em;
  font-family: var(--font);
  font-size: 0.875em;
  border-collapse: collapse;
  color: rgba(255,255,255,0.9);
}
body.profile-lp-page .cancel-table th,
body.profile-lp-page .cancel-table td {
  padding: 0.5em 0.75em;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}
body.profile-lp-page .cancel-table th {
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  width: 40%;
  color: #ffffff;
}

body.profile-lp-page .photographer-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  align-items: center;
}
body.profile-lp-page .photographer-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,23,42,0.12);
}
body.profile-lp-page .photographer-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
body.profile-lp-page .photographer-body .section-title { margin-bottom: 0.5em; }
body.profile-lp-page .photographer-name {
  font-family: var(--font);
  font-size: 1.125em;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1em 0;
}
body.profile-lp-page .photographer-body p {
  margin: 0 0 0.75em 0;
  font-family: var(--font);
  font-size: 0.9375em;
  line-height: 1.7;
  color: #1e293b;
}
body.profile-lp-page .photographer-body p strong {
  color: #1e293b !important;
  font-weight: 700;
}
body.profile-lp-page .profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  margin-top: 1em;
  font-family: var(--font);
  font-size: 0.9375em;
  font-weight: 700;
  color: #ea580c;
  text-decoration: none;
  position: relative;
}
body.profile-lp-page .profile-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
body.profile-lp-page .profile-link:hover { color: #ea580c; }
body.profile-lp-page .profile-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
body.profile-lp-page .link-arrow { font-size: 0.85em; line-height: 1; opacity: 0.9; }
@media (min-width: 768px) {
  body.profile-lp-page .photographer-wrap { grid-template-columns: 0.45fr 0.55fr; gap: 3em; }
}

body.profile-lp-page .apply-lead {
  font-family: var(--font);
  font-size: 1em;
  color: rgba(255,255,255,0.95);
  margin: 0 0 1.5em 0;
  line-height: 1.7;
}
body.profile-lp-page .apply-lead strong {
  color: rgba(255,255,255,1) !important;
  font-weight: 700;
}
body.profile-lp-page .apply-flow {
  width: 100%;
  margin: 2em 0 0 0;
  padding: 1.5em 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.25);
}
body.profile-lp-page .apply-flow-title {
  font-family: var(--font);
  font-size: 1em;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.25em 0;
  text-align: center;
}
body.profile-lp-page .flow-steps-horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 38em;
}
body.profile-lp-page .flow-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0 0.5em;
  width: 100%;
}
body.profile-lp-page .flow-row--center { justify-content: center; }
body.profile-lp-page .flow-step {
  flex: 0 0 9em;
  width: 9em;
  min-height: 4.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.8125em;
  color: #ea580c;
  line-height: 1.5;
  text-align: center;
  padding: 1em 0.5em;
  background: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
}
body.profile-lp-page .flow-arrow {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 1.125em;
  line-height: 1;
  padding: 0 0.15em;
  display: flex;
  align-items: center;
}
@media (min-width: 380px) {
  body.profile-lp-page .flow-step { flex: 0 0 9em; width: 9em; }
}
@media (max-width: 379px) {
  body.profile-lp-page .flow-row { flex-direction: column; gap: 0.5em; }
  body.profile-lp-page .flow-step {
    flex: 0 0 auto;
    width: 100%;
    max-width: 18em;
    min-height: 0;
  }
  body.profile-lp-page .flow-arrow { transform: rotate(90deg); }
}
body.profile-lp-page .apply-cta {
  display: inline-block;
  padding: 1.125em 2.5em;
  background: #ffffff;
  color: #ea580c;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.0625em;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.profile-lp-page .apply-cta:hover {
  color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
body.profile-lp-page .apply-micro {
  font-family: var(--font);
  font-size: 0.8125em;
  color: rgba(255,255,255,0.85);
  margin: 0.75em 0 0 0;
}

body.profile-lp-page .faq-list { margin: 0; }
body.profile-lp-page .faq-list dt {
  font-family: var(--font);
  font-size: 0.9375em;
  font-weight: 700;
  color: #0f172a;
  margin-top: 1.25em;
  padding-bottom: 0.35em;
  border-bottom: 1px solid #e2e8f0;
}
body.profile-lp-page .faq-list dt:first-child { margin-top: 0; }
body.profile-lp-page .faq-list dd {
  margin: 0;
  padding: 0.75em 0 0 0;
  font-family: var(--font);
  font-size: 0.9375em;
  color: #64748b;
  line-height: 1.7;
}

body.profile-lp-page .report-lead {
  text-align: center;
  font-family: var(--font);
  font-size: 1em;
  color: #64748b;
  margin: 0 0 1.5em 0;
}
body.profile-lp-page .video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,23,42,0.1);
}
body.profile-lp-page .report-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #0f172a;
}

body.profile-lp-page .footer {
  padding: 2.5em 1.25em;
  font-family: var(--font);
  font-size: 0.875em;
  text-align: center;
  background: #1e293b;
  color: rgba(255,255,255,0.8);
}
body.profile-lp-page .footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
body.profile-lp-page .footer a:hover { text-decoration: underline; color: #ffffff; }
body.profile-lp-page .footer-sub {
  margin: 0.5em 0 0 0;
  font-size: 0.8125em;
  opacity: 0.8;
  color: rgba(255,255,255,0.8);
}
body.profile-lp-page .footer-copyright {
  margin: 0.75em 0 0 0;
  font-size: 0.8125em;
  opacity: 0.85;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 767px) {
  body.profile-lp-page .section { padding: 2.5em 0; }
  body.profile-lp-page .container { padding: 0 1em; }
  body.profile-lp-page .hero { padding: 2em 1em; min-height: 90vh; }
  body.profile-lp-page .hero-catch { font-size: 24px; }
  body.profile-lp-page .card { padding: 1.25em; }
  body.profile-lp-page .pattern-content { padding: 1.5em 1em; }
  body.profile-lp-page .pattern-row { min-height: 0; }
  body.profile-lp-page .pattern-visual { min-height: 240px; }
  body.profile-lp-page .price-main { font-size: 32px; word-break: keep-all; }
  body.profile-lp-page .price-block .condition-list--light li { margin-bottom: 0.75em; }
  body.profile-lp-page .photographer-wrap { gap: 1.5em; }
  body.profile-lp-page .apply-cta { display: block; text-align: center; padding: 1em 1.5em; }
  body.profile-lp-page .faq-list dt { font-size: 0.875em; }
  body.profile-lp-page .faq-list dd { font-size: 0.875em; }
}
