/* style/blog-how-to-register-kufun-official-site.css */

/* Base styles for the page content */
.page-blog-how-to-register-kufun-official-site {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

.page-blog-how-to-register-kufun-official-site__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-register-kufun-official-site__section-title,
.page-blog-how-to-register-kufun-official-site__main-title,
.page-blog-how-to-register-kufun-official-site__feature-title,
.page-blog-how-to-register-kufun-official-site__step-title,
.page-blog-how-to-register-kufun-official-site__cta-title {
  color: #26A9E0; /* Primary color for titles */
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-register-kufun-official-site__main-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 15px;
  color: #333333; /* Dark text for readability on light background of hero content */
}

.page-blog-how-to-register-kufun-official-site__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-top: 40px;
}

.page-blog-how-to-register-kufun-official-site__paragraph,
.page-blog-how-to-register-kufun-official-site__description,
.page-blog-how-to-register-kufun-official-site__feature-description,
.page-blog-how-to-register-kufun-official-site__step-description,
.page-blog-how-to-register-kufun-official-site__cta-description {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-how-to-register-kufun-official-site__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-how-to-register-kufun-official-site__list li {
  margin-bottom: 10px;
}

/* Hero Section */
.page-blog-how-to-register-kufun-official-site__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #26A9E0; /* Primary color as background */
  color: #FFFFFF; /* White text for primary background */
}

.page-blog-how-to-register-kufun-official-site__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for image */
  margin-bottom: 20px; /* Space between image and content */
}

.page-blog-how-to-register-kufun-official-site__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-register-kufun-official-site__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  background-color: #FFFFFF; /* White background for content block */
  color: #333333; /* Dark text on white background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px; /* Overlap with image for visual effect */
  z-index: 1;
  box-sizing: border-box;
}

.page-blog-how-to-register-kufun-official-site__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-how-to-register-kufun-official-site__btn-primary,
.page-blog-how-to-register-kufun-official-site__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-register-kufun-official-site__btn-primary {
  background-color: #EA7C07; /* Login/CTA button color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-blog-how-to-register-kufun-official-site__btn-primary:hover {
  background-color: #d16b05;
  border-color: #d16b05;
}

.page-blog-how-to-register-kufun-official-site__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-register-kufun-official-site__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Content Area */
.page-blog-how-to-register-kufun-official-site__content-area {
  padding: 60px 0;
}

/* Features Grid */
.page-blog-how-to-register-kufun-official-site__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-register-kufun-official-site__feature-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  border: 1px solid #e0e0e0; /* Add border for contrast */
  color: #333333;
}

.page-blog-how-to-register-kufun-official-site__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.page-blog-how-to-register-kufun-official-site__feature-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  margin: 0 auto 20px auto;
  border-radius: 4px;
  display: block;
}

.page-blog-how-to-register-kufun-official-site__feature-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

/* Step-by-step Guide */
.page-blog-how-to-register-kufun-official-site__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-how-to-register-kufun-official-site__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  color: #333333;
}

.page-blog-how-to-register-kufun-official-site__step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-blog-how-to-register-kufun-official-site__step-title {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-how-to-register-kufun-official-site__step-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 8px;
  display: block;
}

/* Benefits List */
.page-blog-how-to-register-kufun-official-site__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-blog-how-to-register-kufun-official-site__benefits-list li {
  background-color: #eaf7fc; /* Light blue background */
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.1rem;
  color: #333333;
  border-left: 5px solid #26A9E0;
}

.page-blog-how-to-register-kufun-official-site__benefits-list li strong {
  color: #26A9E0;
}

/* FAQ Section */
.page-blog-how-to-register-kufun-official-site__faq-container {
  margin-top: 40px;
}

.page-blog-how-to-register-kufun-official-site__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #333333;
}

.page-blog-how-to-register-kufun-official-site__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f8ff; /* Very light blue for question background */
  color: #26A9E0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-register-kufun-official-site__faq-question:hover {
  background-color: #eaf2f8;
}

.page-blog-how-to-register-kufun-official-site__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

/* Hide default details marker */
.page-blog-how-to-register-kufun-official-site__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-how-to-register-kufun-official-site__faq-item summary::marker {
  display: none;
}

.page-blog-how-to-register-kufun-official-site__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #555555;
  background-color: #FFFFFF;
}

.page-blog-how-to-register-kufun-official-site__faq-answer p {
  margin-bottom: 0;
}

/* Call to Action Section */
.page-blog-how-to-register-kufun-official-site__cta-section {
  background-color: #26A9E0; /* Primary color */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.page-blog-how-to-register-kufun-official-site__cta-title {
  color: #FFFFFF;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.page-blog-how-to-register-kufun-official-site__cta-description {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
}

/* Image specific styles */
.page-blog-how-to-register-kufun-official-site img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure images fill their space nicely */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-how-to-register-kufun-official-site__hero-content {
    margin-top: -40px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-kufun-official-site {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-register-kufun-official-site__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-how-to-register-kufun-official-site__hero-content {
    margin-top: -30px; /* Adjust overlap for smaller screens */
    padding: 30px 15px;
  }

  .page-blog-how-to-register-kufun-official-site__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-how-to-register-kufun-official-site__section-title,
  .page-blog-how-to-register-kufun-official-site__cta-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-top: 30px;
  }

  .page-blog-how-to-register-kufun-official-site__paragraph,
  .page-blog-how-to-register-kufun-official-site__description,
  .page-blog-how-to-register-kufun-official-site__feature-description,
  .page-blog-how-to-register-kufun-official-site__step-description,
  .page-blog-how-to-register-kufun-official-site__cta-description {
    font-size: 1rem;
    text-align: left;
  }

  .page-blog-how-to-register-kufun-official-site__container,
  .page-blog-how-to-register-kufun-official-site__content-area,
  .page-blog-how-to-register-kufun-official-site__cta-section,
  .page-blog-how-to-register-kufun-official-site__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-blog-how-to-register-kufun-official-site img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-register-kufun-official-site__feature-card,
  .page-blog-how-to-register-kufun-official-site__step-item,
  .page-blog-how-to-register-kufun-official-site__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-register-kufun-official-site__btn-primary,
  .page-blog-how-to-register-kufun-official-site__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-register-kufun-official-site__features-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-register-kufun-official-site__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
}