/* ========================================
   New Page Styles
   ======================================== */

/* ========================================
   New Hero Section
   ======================================== */

.c-new-hero {
  width: 100%;
  min-height: 480px;
  position: relative;
  background-image: url('../images/new-hero.jpg');
  background-size: cover;
  background-position: center;
}

.c-new-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 24px;
  min-height: 480px;
}

.c-new-hero__text-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.c-new-hero__description {
  color: var(--base-0);
  line-height: 1.5;
  margin: 0;
}

.c-new-hero__description p {
  margin: 0;
}

.c-new-hero__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.c-new-hero__title span {
  color: var(--base-0);
  display: block;
  line-height: 1;
  letter-spacing: 0.01em;
}

.c-new-hero__features {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: flex-start;
}

.c-new-hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--base-0);
  border-radius: 80px;
  padding: 4px 16px 4px 4px;
}

.c-new-hero__feature-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-70);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-new-hero__feature-icon-img {
  width: 24px;
  height: 24px;
  display: block;
}

.c-new-hero__feature-text {
  color: var(--primary-70);
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

/* PC Styles */


/* ========================================
   New Problems Section
   ======================================== */

.c-new-problems {
  width: 100%;
}

.c-new-problems__list {
  background-color: var(--primary-10);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}



.c-new-problems__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.c-new-problems__question {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.c-new-problems__question-bubble {
  background-color: var(--base-0);
  border-radius: 140px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  overflow: hidden;
}

.c-new-problems__question-text {
  color: var(--primary-70);
  flex: 1;
  min-width: 0;
}

.c-new-problems__question-mark {
  width: 20px;
  flex-shrink: 0;
}

.c-new-problems__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 26px;
  width: 8px;
}

.c-new-problems__arrow-img {
  width: 100%;
  height: 100%;
}

.c-new-problems__answer-text {
  color: var(--primary-70);
  width: 100%;
}

/* ========================================
   New Steps Section
   ======================================== */

.c-new-steps {
  width: 100%;
  background-color: var(--primary-70);
}

.c-new-steps__header {
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.c-new-steps__header-title {
  color: var(--base-0);
}

.c-new-steps__header-subtitle {
  color: var(--base-0);
}

.c-new-steps__header-description {
  color: var(--base-0);
  margin-top: 8px;
}

.c-new-steps__item {
  display: flex;
  width: 100%;
}

.c-new-steps__item + .c-new-steps__item {
  margin-top: 1px;
}

.c-new-steps__number {
  width: 64px;
  background-color: var(--secondary-60);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0;
  flex-shrink: 0;
  gap: 4px;
}

.c-new-steps__number-step {
  color: var(--base-0);
  text-align: center;
  line-height: 1;
}

.c-new-steps__number-digit {
  color: var(--base-0);
  text-align: center;
  line-height: 1;
}

.c-new-steps__content {
  flex: 1;
  background-color: var(--primary-70);
  display: flex;
  flex-direction: column;
}

.c-new-steps__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.c-new-steps__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-new-steps__text {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-new-steps__title {
  color: var(--base-0);
}

.c-new-steps__description {
  color: var(--base-0);
}

.c-new-steps__features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-new-steps__feature-item {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 8px 12px;
  text-align: center;
}

.c-new-steps__feature-text {
  color: var(--base-0);
  margin: 0;
}

.c-new-steps__feature-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.c-new-steps__feature-separator-img {
  width: 16px;
  height: 16px;
  display: block;
}

.c-new-steps__final-message {
  color: var(--base-0);
  text-align: center;
  margin-top: 16px;
}

/* PC Styles */


/* ========================================
   New Price Section
   ======================================== */

.c-new-price {
  width: 100%;
  background-color: transparent;
  padding: 64px 0;
}

.c-new-price__container {
  padding: 0 24px;
  margin: 0 auto;
}



.c-new-price__header {
  margin-bottom: 40px;
}

.c-new-price__subtitle {
  color: var(--primary-70);
  margin-bottom: 4px;
}

.c-new-price__title {
  color: var(--primary-70);
  margin-bottom: 8px;
}

.c-new-price__description {
  color: var(--primary-70);
}

.c-new-price__section {
  margin-bottom: 40px;
}

.c-new-price__section-title {
  color: var(--primary-70);
  margin-bottom: 16px;
}

.c-new-price__group {
  margin-bottom: 24px;
}

.c-new-price__group:last-child {
  margin-bottom: 0;
}

.c-new-price__group-title {
  color: var(--primary-70);
  margin-bottom: 8px;
}

.c-new-price__list {
  display: flex;
  flex-direction: column;
}

.c-new-price__item {
  border-top: 1px solid var(--primary-10);
  padding: 8px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.c-new-price__item:last-child {
  border-bottom: 1px solid var(--primary-10);
}

.c-new-price__time {
  color: var(--primary-50);
  min-width: 80px;
  margin: 0;
}

.c-new-price__item-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.c-new-price__detail {
  color: var(--primary-70);
  margin: 0;
}

.c-new-price__value {
  color: var(--primary-70);
  margin: 0;
}

.c-new-price__simple-item {
  border-top: 1px solid var(--primary-10);
  border-bottom: 1px solid var(--primary-10);
  padding: 8px 0;
}

.c-new-price__simple-value {
  color: var(--primary-70);
  margin: 0;
}

.c-new-price__cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 48px;
}

/* ========================================
   New Banner Section Override
   ======================================== */

.c-new-banner {
  border-top: 1px solid var(--primary-10);
  border-bottom: 1px solid var(--primary-10);
}

/* ========================================
   New Start Section (Lesson CTA)
   ======================================== */

.c-lesson-cta {
  position: relative;
  padding: 48px 0 0 0;
  text-align: center;
  background-color: var(--base-0);
}

.c-lesson-cta__content {
  position: relative;
  z-index: 1;
  padding: 0;
}

.c-lesson-cta__decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.c-lesson-cta__decoration-img {
  width: 10px;
  height: 20px;
}

.c-lesson-cta__subtitle {
  color: var(--secondary-60);
  margin: 0;
}

.c-lesson-cta__title {
  color: var(--primary-70);
  margin: 16px 0;
}

.c-lesson-cta__description {
  color: var(--primary-70);
  margin: 0 0 24px;
}

.c-lesson-cta__image {
  width: 100%;
  height: auto;
  margin-top: 24px;
  display: block;
}

.c-lesson-cta .c-btn--large {
  width: auto;
  padding: 16px 24px;
}

.c-lesson {
  width: 100%;
}

.c-range-attraction .c-btn {
  align-self: flex-start;
}

.c-range-attraction__feature-subtitle {
  color: var(--secondary-60);
  margin: 0;
}

/* ============================================================
   Fixed CTA Price
   ============================================================ */

.c-fixed-cta-price {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: var(--primary-60);
  border-top: 1px solid var(--primary-50);
  width: 100%;
  padding: 12px 24px 20px;
}

@media (min-width: 960px) {
  .c-fixed-cta-price {
    left: 50%;
    transform: translateX(0);
    width: 50vw;
    max-width: 50vw;
  }
}

.c-fixed-cta-price__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-fixed-cta-price__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.c-fixed-cta-price__deco {
  width: 7px;
  height: 14px;
  display: block;
}

.c-fixed-cta-price__title {
  color: var(--base-0);
  margin: 0;
  text-align: center;
}

.c-fixed-cta-price__tel {
  border: 1px solid var(--primary-50);
  display: flex;
  align-items: stretch;
  height: 32px;
}

.c-fixed-cta-price__tel-label {
  background-color: var(--primary-50);
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
}

.c-fixed-cta-price__tel-label span {
  color: var(--base-0);
  margin-top: 2px;
}

.c-fixed-cta-price__tel-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px;
  color: var(--base-0);
}

.c-fixed-cta-price__tel-number {
  margin-top: 2px;
  color: var(--base-0);
  text-decoration: none;
}

.c-fixed-cta-price__tel-number:hover {
  text-decoration: underline;
}

/* PC Styles */


