/* リセット & ベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

/* ヘッダー */
.header {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  color: white;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* ヒーローセクション */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 4rem 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.highlight {
  color: #4CAF50;
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-subtitle strong {
  font-weight: 700;
  color: #FFD54F;
}

/* 価格バッジ */
.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 2rem 3rem;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transform: rotate(-5deg);
  animation: bounce 2s ease-in-out infinite;
  border: 5px solid white;
  margin-top: 1rem;
}

@keyframes bounce {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-10px); }
}

.price-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.price-from {
  font-size: 2rem;
  font-weight: 400;
}

/* 特徴セクション */
.features {
  padding: 4rem 20px;
  background: white;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.feature-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* サービスセクション */
.services {
  padding: 4rem 20px;
  background: #f9f9f9;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 2px;
}

.service-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.service-image {
  text-align: center;
}

.service-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-list i {
  color: #4CAF50;
  font-size: 1.3rem;
}

/* お問い合わせセクション */
.contact {
  padding: 4rem 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.contact .section-title {
  color: white;
}

.contact .section-title::after {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}

.contact-banner {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.contact-cta {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-link {
  font-size: 1.1rem;
  color: #FFD54F;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #FFF;
}

.business-info {
  max-width: 800px;
  margin: 3rem auto 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  color: #4CAF50;
  font-size: 1.3rem;
  width: 30px;
}

/* チラシセクション */
.chirashi-section {
  max-width: 900px;
  margin: 3rem auto 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.chirashi-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.chirashi-title i {
  color: #4CAF50;
  margin-right: 0.5rem;
}

.chirashi-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.chirashi-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.chirashi-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.chirashi-button.download {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: white;
}

.chirashi-button.download:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.chirashi-button.email {
  background: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
  color: white;
}

.chirashi-button.email:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

.chirashi-preview {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.chirashi-preview img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.chirashi-preview:hover img {
  transform: scale(1.05);
}

/* フッター */
.footer {
  background: #0a0a0a;
  color: #999;
  text-align: center;
  padding: 2rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .price-badge {
    padding: 1.5rem 2rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-content {
    grid-template-columns: 1fr;
  }

  .chirashi-actions {
    flex-direction: column;
  }

  .chirashi-button {
    width: 100%;
    justify-content: center;
  }

  .chirashi-section {
    padding: 1.5rem;
  }

  .chirashi-title {
    font-size: 1.5rem;
  }
}