body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
  margin: 0;
  background-color: #fafafa;
}

/* ヘッダー */
.point-header {
  text-align: center;
  background-color: #f4f4f4;
  padding: 3rem 1rem;
  border-bottom: 1px solid #ddd;
}
.point-header h1 {
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.point-header p {
  color: #555;
  font-size: 1rem;
}

/* スマホ専用表示 */
.point-download-mobile {
  text-align: center;
  margin: 2rem 0;
}

.point-download-mobile p {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.download-images {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.download-images a img {
  height: 60px; /* 高さを調整 */
  width: auto;
  display: block;
}

/* PCでは非表示、スマホで表示 */
@media (min-width: 769px) {
  .point-download-mobile {
    display: none;
  }
}




/*ボタン*/
.point-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1.5rem 0;
}

.point-buttons .btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #8b0000;
  background: white;
  color: #8b0000;
  border-radius: 9999px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.point-buttons .btn.active,
.point-buttons .btn:hover {
  background: #8b0000;
  color: white;
}

/* ステップセクション */
.point-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.hidden {
  display: none;
}

.point-steps {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.step {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  animation: fadeIn 0.6s ease forwards;
}
.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #8b0000;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: bold;
}
.step h2 {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #222;
}
.step p {
  margin-top: 0.5rem;
}

/* FAQ */
.point-faq {
  background-color: #fff;
  padding: 3rem 1rem;
  text-align: left;
}
.point-faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
.faq-item {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}
.faq-item h3 {
  font-size: 1.1rem;
  color: #8b0000;
}
.faq-item p {
  margin-left: 1rem;
}

/* 注意事項 */
.point-notes {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* アニメーション */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .step {
    padding: 1.5rem;
  }
  .point-header h1 {
    font-size: 1.6rem;
  }
  .step h2 {
    font-size: 1.1rem;
  }
}

.point-contact {
  text-align: center;
  margin: 3rem 1rem;
}

.contact-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: white; /* 背景白 */
  color: #8b0000; /* 文字色は赤系 */
  font-weight: bold;
  border-radius: 9999px;
  border: 2px solid #8b0000; /* 枠線 */
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #8b0000; /* ホバー時に赤背景 */
  color: white; /* ホバー時に文字白 */
}

