/*  共通 Start */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.card-item p {
  line-height: 1.7;
  font-weight: 500;
}
/*  共通 END */

/*　*/
.hero {
/*  padding: 60px 20px;*/
/*  background: linear-gradient(to right, #ffffff 0%, #f6fbf5 100%);*/
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: bold;
  color: #222;
}

.hero-description {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 32px;
}

.store-buttons {
  display: flex;
  gap: 16px;
}

.store-badge {
  height: 56px;
  width: auto;
  display: block;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.phone-image {
  width: 280px;
  max-width: 100%;

  border-radius: 32px;

  box-shadow:
  0 20px 40px rgba(0,0,0,0.15);

  transform: rotate(-1deg);
}

@media (max-width: 768px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .store-buttons {
    justify-content: center;
  }

  .phone-image {
    width: 220px;
    margin-top: 20px;
  }

  .store-buttons {
    gap: 8px;
  }
}
/*　END */
.story-box {
  background: #f7fbf7;
  border-left: 5px solid #4CAF50;
  padding: 24px;
  border-radius: 12px;
  line-height: 2;
}

/* 今すぐ使うボタン */
.web-link {
  display: inline-block;
  margin-top: 18px;

  font-size: 14px;
  color: #2e7d32;
  text-decoration: none;
}

.web-link:hover {
  text-decoration: underline;
}

.problems {
  margin-top: 20px;
}

/* よくある質問　START */
.faq-section {
  margin-top: 20px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  line-height: 1.8;
  color: #555;
}

.faq-icon {
  font-size: 20px;
  color: #4CAF50;
}
/* よくある質問　END */

/* スクリーンショット START */
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-wrapper {
/*  width: 320px;*/
  width: min(320px, 70vw);
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.slider-button {
  width: 24px;
  height: 120px;
  border: none;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  font-size: 28px;
  color: #666;
  transition: 0.2s;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d0d0d0;
}

.dot.active {
  background: #4CAF50;
}
/* スクリーンショット END */