/* =====================================================
    LP-SPECIFIC OVERRIDES & ADDITIONS
    ===================================================== */

/* --- LP Hero (買取特化) -------------------------------- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0b2a1a 0%, #0d3b2e 40%, #0a2a35 100%);
}

/* 神戸イメージ：抽象的な光の筋 */
.lp-hero__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.lp-hero__deco::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(245, 205, 43, 0.22) 0%, transparent 65%);
  transform: rotate(-15deg);
}

.lp-hero__deco::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(25, 155, 166, 0.18) 0%, transparent 65%);
}

/* 神戸港のシルエット風 波形 */
.lp-hero__kobe-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.15;
}

/* 神戸市シルエット装飾 */
.lp-hero__kobe-icon {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.06;
  font-size: 28rem;
  line-height: 1;
  color: #fff;
  pointer-events: none;
  user-select: none;
}

.lp-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 130px 0 80px;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 48px;
}

.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 205, 43, 0.18);
  border: 1px solid rgba(245, 205, 43, 0.5);
  color: var(--color-sun);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.lp-hero__eyebrow svg {
  flex-shrink: 0;
}

.lp-hero__catch {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 3.0rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.lp-hero__catch em {
  font-style: normal;
  color: var(--color-sun);
  position: relative;
}

.lp-hero__catch em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background: var(--color-sun);
  border-radius: 2px;
  opacity: 0.6;
}

.lp-hero__sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* 3つの安心バッジ */
.lp-hero__trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.lp-trust-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition-base);
}

.lp-trust-badge:hover {
  background: rgba(245, 205, 43, 0.2);
}

.lp-trust-badge__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-sun);
  color: #1a1a1a;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.lp-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.lp-hero__character {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lp-hero__character img {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
  animation: hero-float 3.5s ease-in-out infinite;
}

/* 台座グロー */
.lp-hero__character::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(245, 205, 43, 0.35) 0%, transparent 70%);
  border-radius: 50%;
}

/* --- 神戸密着バー ------------------------------------ */
.kobe-bar {
  background: var(--color-sea);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
}

.kobe-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.kobe-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.kobe-bar__item svg {
  flex-shrink: 0;
}

/* --- PAIN POINTS (お悩み) -------------------------------- */
.lp-pain {
  background: var(--color-bg-warm);
  padding: var(--space-xl) 0 0;
}

.lp-pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: var(--space-lg);
}

.pain-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 4px solid var(--color-sun);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 8px;
  font-size: 5rem;
  color: var(--color-sun);
  opacity: 0.12;
  font-weight: 900;
  line-height: 1;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pain-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sun-light);
  border-radius: var(--radius-md);
}

.pain-card__text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--color-text);
}

/* 解決メッセージバナー */
.lp-pain__resolve {
  background: linear-gradient(135deg, var(--color-sun) 0%, #f0b800 100%);
  padding: 32px 24px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-pain__resolve-character {
  width: 90px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.lp-pain__resolve-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.4;
}

.lp-pain__resolve-text strong {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}

/* --- BENEFITS (選ばれる理由) ----------------------------- */
.lp-benefits {
  background: linear-gradient(180deg, #fff8d6 0%, #fff 100%);
  padding: var(--space-xl) 0;
}

.lp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.benefit-lp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border-top: 4px solid var(--color-sun);
}

.benefit-lp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-lp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 205, 43, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.benefit-lp-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-sun);
  color: #1a1a1a;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 12px;
}

.benefit-lp-card__icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.benefit-lp-card__title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.benefit-lp-card__title span {
  color: var(--color-mountain-dark);
}

.benefit-lp-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.75;
}

/* --- COMPARISON TABLE ---------------------------------- */
.lp-comparison {
  background: #fff;
  padding: var(--space-xl) 0;
}

.lp-comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.lp-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.9375rem;
}

.lp-comparison-table thead tr {
  background: linear-gradient(135deg, #0b2a1a 0%, #0d3b2e 100%);
}

.lp-comparison-table thead th {
  padding: 18px 20px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
}

.lp-comparison-table thead th:first-child {
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.lp-comparison-table thead .th-asuhare {
  background: var(--color-sun);
  color: #1a1a1a;
  font-weight: 900;
  font-size: 1rem;
}

.lp-comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
}

.lp-comparison-table tbody tr:last-child {
  border-bottom: none;
}

.lp-comparison-table tbody tr:hover {
  background: var(--color-sun-light);
}

.lp-comparison-table tbody td {
  padding: 16px 20px;
  color: var(--color-text-sub);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
}

.lp-comparison-table tbody td:first-child {
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  font-size: 0.875rem;
}

.lp-comparison-table .td-asuhare {
  background: rgba(245, 205, 43, 0.12);
  color: var(--color-mountain-dark);
  font-weight: 800;
  font-size: 0.9375rem;
}

.lp-comparison-table .td-asuhare .win-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-sun);
  color: #1a1a1a;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 900;
}

/* --- WORKFLOW (買取の流れ) ----------------------------- */
.lp-workflow {
  background: linear-gradient(180deg, var(--color-offwhite) 0%, #fff 100%);
  padding: var(--space-xl) 0;
}

.lp-workflow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* 矢印コネクタ */
.lp-workflow__steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(12.5% + 8px);
  width: calc(75% - 16px);
  height: 3px;
  background: linear-gradient(90deg, var(--color-sun) 0%, var(--color-sea) 100%);
  z-index: 0;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.workflow-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  color: #1a1a1a;
  background: var(--color-sun);
  box-shadow: 0 4px 16px rgba(245, 205, 43, 0.4);
  margin-bottom: 16px;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.workflow-step:hover .workflow-step__num {
  transform: scale(1.12);
}

.workflow-step__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.workflow-step__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.workflow-step__desc {
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  line-height: 1.65;
}

.workflow-step__badge {
  display: inline-block;
  background: var(--color-sea-light);
  color: var(--color-sea-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-top: 6px;
}

/* --- MESSAGE (代表の想い) ------------------------------ */
.lp-message {
  background: linear-gradient(135deg, #0b2a1a 0%, #0d3b2e 60%, #0a2a35 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.lp-message::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(245, 205, 43, 0.10) 0%, transparent 65%);
}

.lp-message__inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.lp-message__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-sun);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.lp-message__title {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2.0rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
}

.lp-message__title em {
  font-style: normal;
  color: var(--color-sun);
}

.lp-message__body {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 2.0;
  border-left: 3px solid var(--color-sun);
  padding-left: 20px;
  margin-bottom: 28px;
}

.lp-message__sig {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.lp-message__sig strong {
  color: #fff;
  font-size: 1rem;
}

.lp-message__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lp-message__visual img {
  width: 100%;
  max-width: 220px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  animation: hero-float 4s ease-in-out infinite;
}

/* --- FAQ (よくある質問) -------------------------------- */
.lp-faq {
  background: var(--color-bg-warm);
  padding: var(--space-xl) 0;
}

.lp-faq__inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 48px;
  align-items: start;
}

.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item.is-open {
  border-color: var(--color-sun);
}

.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  background: none;
  font-family: inherit;
  transition: background var(--transition-base);
}

.faq-item__q:hover {
  background: var(--color-sun-light);
}

.faq-item.is-open .faq-item__q {
  background: var(--color-sun-light);
}

.faq-q-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-sun);
  color: #1a1a1a;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-q-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
  text-align: left;
  line-height: 1.5;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base), transform var(--transition-base);
  font-size: 1rem;
  color: var(--color-text-sub);
}

.faq-item.is-open .faq-toggle-icon {
  background: var(--color-sun-dark);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item__a {
  display: none;
  padding: 0 24px 20px 74px;
}

.faq-item.is-open .faq-item__a {
  display: block;
}

.faq-a-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-sea);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  float: left;
  margin: 0 12px 8px 0;
}

.faq-a-text {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 1.8;
  padding-top: 6px;
}

.lp-faq__character {
  position: sticky;
  top: 100px;
}

.lp-faq__character img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
  animation: hero-float 3.5s ease-in-out infinite;
}

.lp-faq__character-bubble {
  background: var(--color-sun);
  color: #1a1a1a;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.4;
}

.lp-faq__character-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: var(--color-sun) transparent transparent;
}

/* --- CONTACT FORM (買取特化) --------------------------- */
.lp-contact {
  background: linear-gradient(135deg, #0b2a1a 0%, #0d3b2e 60%, #0a2a35 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.lp-contact::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(245, 205, 43, 0.08) 0%, transparent 65%);
}

.lp-contact::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(25, 155, 166, 0.10) 0%, transparent 65%);
}

.lp-contact__inner {
  position: relative;
  z-index: 1;
}

.lp-contact__head {
  text-align: center;
  margin-bottom: 48px;
}

.lp-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 205, 43, 0.18);
  border: 1px solid rgba(245, 205, 43, 0.4);
  color: var(--color-sun);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.lp-contact__title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
}

.lp-contact__title em {
  font-style: normal;
  color: var(--color-sun);
}

.lp-contact__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
}

.lp-contact__lead strong {
  color: var(--color-sun);
}

/* 3点CTA */
.lp-contact__cta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.lp-cta-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: background var(--transition-base), transform var(--transition-base);
}

.lp-cta-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.lp-cta-card__icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.lp-cta-card__title {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.lp-cta-card__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* フォーム */
.lp-form-wrap {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.lp-form-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lp-form-title svg {
  flex-shrink: 0;
}

.lp-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.lp-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-form .form-group.full-width {
  grid-column: 1 / -1;
}

.lp-form label {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-req {
  background: #e03c31;
  color: #fff;
  font-size: 0.6875rem;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
}

.form-opt {
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.6875rem;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
}

.lp-form input,
.lp-form select,
.lp-form textarea {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color var(--transition-base), background var(--transition-base);
  outline: none;
}

.lp-form input::placeholder,
.lp-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
  border-color: var(--color-sun);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(245, 205, 43, 0.15);
}

.lp-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.5)'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}

.lp-form select option {
  background: #1a3a1a;
  color: #fff;
}

.lp-form textarea {
  min-height: 120px;
  resize: vertical;
}

.lp-form__submit-wrap {
  margin-top: 24px;
  text-align: center;
}

.lp-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  padding: 20px 32px;
  background: var(--color-sun);
  color: #1a1a1a;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(245, 205, 43, 0.4);
  cursor: pointer;
  border: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  animation: pulse-btn 2.5s ease-in-out infinite;
}

@keyframes pulse-btn {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(245, 205, 43, 0.4);
  }

  50% {
    box-shadow: 0 12px 48px rgba(245, 205, 43, 0.65);
  }
}

.lp-form__submit:hover {
  transform: translateY(-3px);
  background: var(--color-sun-dark);
  box-shadow: 0 16px 48px rgba(245, 205, 43, 0.5);
  animation: none;
}

.lp-form__note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  margin-top: 12px;
}

/* --- FOOTER (LP) --------------------------------------- */
.lp-footer-wrap {
  background: #0a1a0e;
}

.lp-footer-wrap .lp-footer {
  background: none;
}

/* --- KOBE ACCENT 神戸地図装飾 -------------------------- */
.kobe-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-sea-light);
  color: var(--color-sea-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
}

/* --- FLOATING CTA -------------------------------------- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-cta__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
  color: #fff;
}

.floating-cta__btn:hover {
  transform: scale(1.12);
}

.floating-cta__btn--line {
  background: #06c755;
}

.floating-cta__btn--tel {
  background: linear-gradient(135deg, var(--color-mountain) 0%, var(--color-mountain-dark) 100%);
}

/* --- SCROLL TOP --------------------------------------- */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  box-shadow: var(--shadow-md);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--color-sun);
  border-color: var(--color-sun);
}

/* =====================================================
    RESPONSIVE
    ===================================================== */
@media (max-width: 960px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero__character {
    order: -1;
    margin-bottom: 16px;
  }

  .lp-hero__character img {
    max-width: 180px;
  }

  .lp-hero__trust-badges,
  .lp-hero__cta {
    justify-content: center;
  }

  .lp-workflow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .lp-workflow__steps::before {
    display: none;
  }

  .lp-message__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-message__body {
    text-align: left;
  }

  .lp-message__visual {
    order: -1;
  }

  .lp-faq__inner {
    grid-template-columns: 1fr;
  }

  .lp-faq__character {
    display: none;
  }

  .lp-contact__cta-row {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 640px) {
  .lp-hero__catch {
    font-size: 1.55rem;
  }

  .lp-workflow__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-form .form-row {
    grid-template-columns: 1fr;
  }

  .lp-form-wrap {
    padding: 24px 16px;
  }

  .kobe-bar__inner {
    gap: 16px;
  }

  .lp-header__hamburger {
    display: flex;
  }

  .lp-header__cta .btn-sm {
    display: none;
  }
}

@media (max-width: 480px) {
  .lp-comparison-table {
    font-size: 0.8125rem;
  }

  .lp-comparison-table tbody td,
  .lp-comparison-table thead th {
    padding: 12px 10px;
  }

  .pain-card__text {
    font-size: 0.875rem;
  }
}

/* pulse (header button) */
.pulse-sun {
  animation: pulse-sun-anim 2.5s ease-in-out infinite;
}

@keyframes pulse-sun-anim {

  0%,S
  100% {
    box-shadow: 0 4px 16px rgba(245, 205, 43, 0.4);
  }

  50% {
    box-shadow: 0 8px 32px rgba(245, 205, 43, 0.65);
  }
}

