/* Page Content */
.price-page {
  width: 100%;
  background: #f5f5f5;
  padding: 32px 0;
}

.price-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.price-content-block {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price-content-title {
  font-size: 32px;
  font-weight: 700;
  color: #12c06c;
  margin: 0 0 16px 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.price-content-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 32px 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.price-content-body {
  margin-top: 24px;
}

.price-content-text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.8;
  margin: 0 0 24px 0;
  font-family: "Noto Sans JP", sans-serif;
}

.price-content-text:last-child {
  margin-bottom: 0;
}

/* Two Column Section */
.price-section-two-column {
  width: 100%;
  background: #ffffff;
  padding: 60px 0;
}

.price-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  gap: 48px;
  align-items: stretch;
}

.price-section-number-title-wrapper{
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-section-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price-section-number {
  width: 41px;
  height: 41px;
  background: #FEE2EF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FE4BA0;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 1;
}

.price-section-content {
  margin-top: 16px;
}

.price-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.price-section-text {
  font-size: 20px;
  font-weight: 400;
  color: #1C1C1C;
  line-height: 1.5;
  margin: 0 0 16px 0;
  font-family: "Noto Sans JP", sans-serif;
}

.price-section-text:last-child {
  margin-bottom: 0;
}

.price-section-list {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
}

.price-section-image-wrapper {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
}

.price-section-image-inner {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.price-section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

.ranking-icon-pink-check > li{
  font-size: 18px;
  font-weight: 400;
  color: #1C1C1C;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.price-section-content-wrapper-list{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-section-title-big{
  font-size: 40px;
  font-weight: 700;
  color: #FE4BA0;
  margin: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 24px;
}

.ranking-detail-question{
  margin: 16px 0 0 0;
  font-size: 20px;
  font-weight: 700;
  color: #1C1C1C;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .price-banner .content-banner-container {
    padding: 50px 60px;
  }

  .price-banner .content-banner-title {
    font-size: 56px;
  }

  .price-page-container {
    padding: 0 60px;
  }

  .price-section-container {
    padding: 0 60px;
    gap: 40px;
  }

  .price-section-image-wrapper {
    flex: 0 0 45%;
  }

  .banner-breadcrumb {
    padding: 20px 60px;
  }
}

@media (max-width: 768px) {
  .price-banner .content-banner {
    min-height: 300px;
  }

  .price-banner .content-banner-container {
    padding: 40px 30px;
    justify-content: center;
  }

  .price-banner .content-banner-title {
    font-size: 36px;
    text-align: center;
  }

  .price-banner .content-banner-container::before,
  .price-banner .content-banner-container::after {
    display: none;
  }

  .price-page {
    padding: 40px 0 60px;
  }

  .price-page-container {
    padding: 0 20px;
  }

  .price-content-block {
    padding: 30px 16px;
  }

  .price-content-title {
    font-size: 24px;
  }

  .price-content-subtitle {
    font-size: 16px;
  }

  .price-content-text {
    font-size: 16px;
  }

  .price-section-two-column {
    padding: 40px 0;
  }

  .price-section-container {
    padding: 0 20px;
    flex-direction: column !important;
    gap: 32px;
    flex-direction: column-reverse !important;
  }

  .price-section-content-wrapper {
    padding: 16px;
  }

  .price-section-number {
    top: -16px;
    left: 20px;
    width: 40px;
    height: 32px;
    font-size: 18px;
  }

  .price-section-title {
    font-size: 20px;
  }

  .price-section-text {
    font-size: 16px;
  }

  .price-section-image-wrapper {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }

  .banner-breadcrumb {
    padding: 15px 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .price-banner .content-banner-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .price-content-title {
    font-size: 20px;
  }

  .price-content-subtitle {
    font-size: 14px;
  }

  .price-content-text {
    font-size: 14px;
  }

  .price-section-title {
    font-size: 18px;
  }

  .price-section-text {
    font-size: 14px;
  }

  .price-section-number {
    width: 36px;
    height: 28px;
    font-size: 16px;
  }
  .ranking-detail-question{
    font-size: 16px;
  }
  .price-section-title-big{
    font-size: 24px;
  }
}

