/* LINE PR Page Specific Styles */

/* Reset some base conflicts within the container */
.line-lp-container {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 50px;
}

.line-lp-container h1, .line-lp-container h2, .line-lp-container h3, .line-lp-container p {
  margin: 0;
  padding: 0;
}

/* Hero Section */
.line-lp-container .hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 300px;
  padding: 46px 48px;
  text-align: left;
  background: #f7fbfc;
  border: none;
  border-radius: 8px;
  margin-bottom: 50px;
}

.line-lp-container .hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 46%, rgba(255,255,255,0.62) 72%, rgba(255,255,255,0.3) 100%), url("/target_medical_assets/images/medical/hero-image.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}


.line-lp-container .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.line-lp-container .hero-kicker {
  display: inline-block;
  color: #1a3c87;
  font-size: 0.95rem;
  font-weight: bold;
  padding-left: 14px;
  border-left: 4px solid #06C755;
  margin-bottom: 14px;
}

.line-lp-container .hero-title {
  color: #1a3c87;
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 18px;
  line-height: 1.35;
}

.line-lp-container .hero-title span {
  color: #06C755;
}

.line-lp-container .hero-subtitle {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.9;
}


/* Section Titles */

.line-lp-container .section-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #333;
  border-left: 8px solid #06C755;
  padding: 15px 20px;
  background-color: #f9f9f9;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Features */
.line-lp-container .features {
  margin-bottom: 60px;
}

.line-lp-container .feature-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.line-lp-container .feature-card {
  flex: 1 1 0;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f0;
}

.line-lp-container .feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.line-lp-container .feature-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.line-lp-container .feature-desc {
  font-size: 0.95rem;
  color: #666;
}

/* Notice */
.line-lp-container .notice-section {
  margin-bottom: 60px;
}

.line-lp-container .notice-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 26px 30px;
}

.line-lp-container .notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.line-lp-container .notice-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}

.line-lp-container .notice-list li::before {
  content: '';
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #5cbf60;
  border-radius: 50%;
}

.line-lp-container .notice-list li:last-child {
  margin-bottom: 0;
}

/* Add Friend Section (Exact Match to Screenshot) */
.line-lp-container .add-friend-section {
  margin-bottom: 50px;
}

.line-lp-container .add-friend-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  background-color: #f5f5f5;
  padding: 12px 15px;
  border-left: 4px solid #1a3c87;
  margin-bottom: 25px;
}

.line-lp-container .add-friend-grid {
  display: flex;
  gap: 20px;
}

.line-lp-container .add-friend-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
}

.line-lp-container .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a3c87;
  margin-bottom: 15px;
}

.line-lp-container .card-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 25px;
}

.line-lp-container .btn-add-friend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #5cbf60;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 40px;
  border-radius: 4px;
  transition: opacity 0.2s ease;
  min-width: 200px;
}

.line-lp-container .btn-add-friend:hover {
  opacity: 0.85;
}

.line-lp-container .btn-add-friend span {
  margin-left: 10px;
}

.line-lp-container .qr-code {
  width: 160px;
  margin: 0 auto;
}

.line-lp-container .qr-code img {
  display: block;
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .line-lp-container .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-height: auto;
    padding: 34px 24px;
  }

  .line-lp-container .hero::before {
    background-image: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 72%, rgba(255,255,255,0.72) 100%), url("/target_medical_assets/images/medical/hero-image.jpg");
  }

  .line-lp-container .hero-title {
    font-size: 1.65rem;
    line-height: 1.45;
  }

  .line-lp-container .hero-subtitle br {
    display: none;
  }
  .line-lp-container .feature-grid,
  .line-lp-container .add-friend-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .line-lp-container .hero {
    padding: 30px 20px;
  }
}
