/* =============================================
   すみれクリーニング LP スタイルシート
   sumire-cleaning-lp.css
   ============================================= */

/* ----- Reset & Base ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #e8f4fb;
  color: #222;
  max-width: 480px;
  margin: 0 auto;
}

/* ----- HEADER ----- */
.lp-header {
  background: #fff;
  text-align: center;
  padding: 14px 20px 10px;
}

.lp-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  color: #1a5fa8;
}

.lp-header h1{
  font-size: 20px;
}

/* ----- TAGLINE BAR ----- */
.tagline-bar {
  background: #0461c4;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 7px 10px;
  letter-spacing: 2px;
}

/* ----- HERO ----- */
.hero {
  background: linear-gradient(135deg, #b8e4f7 0%, #d9f0fb 60%, #c2eaf8 100%);
  padding: 32px 20px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.hero-title {
  font-size: 16px;
  font-weight: 900;
  color: #1a3a6b;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.hero-title .highlight {
  color: #1a5fa8;
  font-size: 24px;
}

.hero-title .hero-sub {
  font-size: 16px;
  color: #1a3a6b;
}

/* Campaign Badge */
.campaign-badge {
  position: absolute;
  top: 4px;
  right: 16px;
  background: linear-gradient(135deg, #fff7b0 0%, #ffd700 30%, #c9a000 60%, #7a5c00 100%);
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200, 160, 0, 0.35);
  z-index: 2;
}

.campaign-badge .badge-label {
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  background: #ff6600;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 4px;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.5);
}

.campaign-badge .badge-sub {
  font-size: 12px;
  font-weight: 700;
  color: #442402;
}

.campaign-badge .badge-off {
  font-size: 24px;
  font-weight: 900;
  color: #e00;
  line-height: 1;
  -webkit-text-stroke: 1px #faeb99;
}

.campaign-badge .badge-off-text {
  font-size: 16px;
}

/* ----- CTA SECTION ----- */
.cta-section {
  padding: 14px 16px 0;
}

.btn-line {
  display: block;
  background: #22b14c;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  padding: 15px 10px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 1px;
  margin-bottom: 10px;
  box-shadow: 0 4px 0 #178a35, 0 6px 16px rgba(34, 177, 76, 0.25);
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-line:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #178a35;
}

.btn-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #1a5fa8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 0 #0d3c6e, 0 6px 16px rgba(26, 95, 168, 0.25);
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-tel:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #0d3c6e;
}

.btn-tel .tel-left {
  font-size: 13px;
}

.btn-tel .tel-num {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

.btn-tel .tel-arrow {
  font-size: 20px;
}

/* ----- FEATURES SECTION ----- */
.features-section {
  margin: 18px 16px 0;
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px 16px;
  box-shadow: 0 2px 12px rgba(0, 100, 200, 0.08);
}

.features-section .features-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a3a6b;
  margin-bottom: 12px;
  text-align: center;
  border-bottom: 2px dashed #4ab8e8;
  padding-bottom: 8px;
}

.features-section .features-title strong{
  font-size: 20px;
}

/* ----- CHECKLIST ----- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  width: fit-content;
}


.checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1a3a6b;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: #4ab8e8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}

/* ----- BEFORE/AFTER CARD ----- */
.ba-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #b8ddf0;
}

.ba-images {
  gap: 2px;
  background: #b8ddf0;
  padding: 2px;
}

.ba-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #c5dce8 0%, #e0f0f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #5a90b0;
  text-align: center;
}

.ba-img{
  width:286px;
  object-fit: contain;
}

.ba-card-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #1a5fa8;
  padding: 5px;
  background: #fff;
}

/* ----- BEFORE/AFTER ROW ----- */
.ba-row {
  margin: 12px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ----- PRICING SECTION ----- */
.pricing-section {
  margin: 16px 16px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 100, 200, 0.08);
}

.pricing-header {
  background: #4ab8e8;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  padding: 10px;
  letter-spacing: 2px;
}

.pricing-body {
  padding: 14px 16px;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0f0f8;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-info {
  flex: 1;
}

.pricing-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a3a6b;
}

.pricing-price {
  font-size: 10px;
  font-weight: 900;
  color: #e00;
}

.pricing-price .strong{
  font-size: 14px;
}

.pricing-unit {
  font-size: 13px;
  color: #555;
  font-weight: 400;
}

.btn-estimate-sm {
  display: block;
  background: #1a5fa8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

/* ----- FOOTER ----- */
.lp-footer {
  background: #1a5fa8;
  color: #fff;
  text-align: center;
  padding: 20px 16px 24px;
  margin-top: 20px;
}

.footer-tel {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.footer-tel .tel-icon {
  font-size: 26px;
}

.footer-cta-text {
  font-size: 15px;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 12px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.badge-line {
  background: #06c755;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.badge-line .line-logo {
  font-size: 18px;
}

.badge-line .line-sub {
  font-size: 10px;
}

.qr-placeholder {
  display: none;
}

@media screen and (min-width: 769px) {
  body{
    max-width: 1024px;
  }
  .lp-header h1{
    font-size: 40px;
  }

  .tagline-bar{
    font-size: 20px;
  }

  .hero{
    text-align: center;
  }

  .hero-title{
    font-size: 32px;
  }

  .hero-title .highlight{
    font-size: 48px;
  }

  .hero-title .hero-sub{
    font-size: 32px;
  }

  .campaign-badge{
    top: 10px;
    right: 150px;
    width: 140px;
    height: 140px;
  }

  .campaign-badge .badge-label{
    font-size: 16px;
  }

  .campaign-badge .badge-sub{
    font-size: 16px;
  }

  .campaign-badge .badge-off{
    font-size: 32px;
  }

  .campaign-badge .badge-off-text{
    font-size: 24px;
  }

  .cta-section{
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0;
    padding-top: 16px;
  }
  .btn-line{
    width: fit-content;
    height: 74px;
    margin: 0;
    padding: 24px 10px;
  }

  .btn-tel{
    width: fit-content;
  }
  .features-section .features-title{
    font-size: 32px;
  }

  .features-section .features-title strong{
    font-size: 48px;
  }
  .checklist{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    margin: auto;
  }

  .check-icon{
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .ba-row{
    flex-direction: row;
    gap: 16px;
    margin: 16px auto;
    justify-content: center;
  }

  .ba-card-label{
    font-size: 20px;
  }

  .pricing-header{
    font-size: 40px;
  }

  .pricing-row{
    justify-content: center;
    gap: 32px;
  }

  .pricing-info{
    width: 300px;
    flex: none;
  }

  .pricing-name{
    font-size: 24px;
    width: fit-content;
  }

  .pricing-price{
    font-size: 24px;
    width: fit-content;
  }

  .pricing-price .strong{
    font-size: 40px
  }

  .pricing-unit{
    font-size: 20px;
    padding-left: 8px;
  }

  .btn-estimate-sm{
    font-size: 24px;
  }

  .footer-tel{
    font-size: 48px;
  }

  .footer-cta-text{
    font-size: 32px;
  }

  .badge-line .line-logo{
    font-size: 24px;
  }
  .qr-placeholder{
    display: inline-block;
    width: 120px;
    height: 120px;
  }
}