/* =================================
   ヒーローセクション（PC版）
   ================================= */

.hero-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 150px;
  width: 1004px;
  height: 338px;
  background: var(--light-bg);
  border-radius: 40px;
  z-index: 0;
}

.hero-container {
  position: relative;
  width: 1004px;
  padding: 0px 85px 50px 40px;
  display: flex;
  align-items: flex-start;
  z-index: 1;
}

.model-wrapper {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 1;
}

.model-wrapper img {
  height: 486px;
  display: block;
}

.chishiki-sticker {
  position: absolute;
  top: -130px;
  left: 20px;
  width: 104px;
  height: 70px;
  object-fit: contain;
  z-index: 2;
}

.hero-text {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 562px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.hero-intro {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 0px;
  white-space: nowrap;
}

.highlight-wrapper {
  position: relative;
  display: inline-block;
}

.highlight {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
}

.dots {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: var(--primary-color);
  letter-spacing: 4px;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.hero-aligned-points {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-aligned-points .point {
  text-align: center;
  width: 154px;
}

.hero-aligned-points .point img.label {
  display: block;
  margin: 0 auto 0px;
  max-width: 80%;
}

.hero-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-price span {
  font-size: 16px;
  font-weight: normal;
}

.hero-mobile {
  display: none;
}

/* =================================
   プログラムフローセクション
   ================================= */

.program-flow {
  padding: 0px 20px 20px;
  text-align: center;
  background-color: var(--white);
}

.program-flow .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin: 12px 0 20px;
  color: var(--text-color);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}

.step-card {
  position: relative;
  width: 324px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  position: absolute;
  top: 54px;
  left: 0;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  font-style: italic;
  z-index: 3;
}

.caption-img {
  position: absolute;
  top: 10px;
  right: 0;
  height: 48px;
  object-fit: contain;
  z-index: 3;
}

.step-illustration {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.step-illustration img.icon {
  height: 100px;
  object-fit: contain;
}

.step-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 324px;
  height: 104px;
  background: var(--light-blue-bg);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.step-description {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
}

.step-description p {
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.summary-section {
  margin-top: 50px;
  padding: 0 40px;
  position: relative;
}

.summary-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin: 0 auto;
  gap: 20px;
  box-sizing: border-box;
}

.left-decoration, .right-decoration {
  display: flex;
  align-items: center;
}

.summary-text {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
  margin: 0;
  flex: 1;
  padding: 0 20px;
}

/* =================================
   フィーチャーセクション
   ================================= */

.features-section {
  padding: 60px 20px;
  background: var(--white);
  margin-top: 60px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 17px;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
}

.target-box {
  background: var(--light-bg);
  border-radius: 40px;
  padding: 25px 32px 32px;
  width: 494px;
  height: 406px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
}

.target-box h3 {
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: bold;
  line-height: 1.2;
  position: absolute;
  top: -75px;
  left: 32px;
  z-index: 2;
  color: var(--primary-color);
}

.target-box h3 .emphasis {
  font-weight: bold;
  font-size: 28px;
  color: var(--text-color);
  display: inline-block;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  background: white;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 12px;
  display: block;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.06);
  width: fit-content;
}

.balloon-box {
  margin-top: 24px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 32px;
  bottom: -24px;
  z-index: 3;
  justify-content: flex-start;
}

.balloon-but {
  font-weight: bold;
  font-size: 20px;
  margin-right: 12px;
}

.balloon-text {
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.point-box {
  width: 494px;
  flex-shrink: 0;
  padding: 0;
}

.point-box .section-label::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
}

.features-section .point-box h3 {
  font-size: 26px;
  font-weight: bold;
  margin: 0 !important;
  padding: 0 !important;
}

.point-box h3 .large-number {
  color: var(--text-color);
  font-size: 36px;
  font-weight: bold;
}

.point-card {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 24px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  position: relative;
  overflow: visible;
}

.point-card img {
  height: 100px;
  margin-left: 16px;
  position: absolute;
  right: -10px;
  bottom: -10px;
}

.point-text {
  text-align: left;
}

.features-section .point-text h4 {
  font-size: 22px;
  margin: 0 0 8px !important;
  max-width: none !important;
  width: auto !important;
}

.point-text p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* =================================
   カリキュラムセクション
   ================================= */

.curriculum-section {
  text-align: center;
  padding: 0px 20px 60px;
  position: relative;
  overflow: visible;
}

@media (min-width: 1151px) {
  .curriculum-section {
    min-width: 1088px;
  }
}

.curriculum-title {
  font-size: 32px;
  font-weight: bold;
  margin: 12px 0;
}

.curriculum-title .blue {
  color: var(--primary-color);
}

.curriculum-desc {
  font-size: 16px;
  margin: 0 0 20px 0;
}

.curriculum-wrapper {
  position: relative;
  max-width: 1088px;
  margin: 0 auto;
  padding: 16px 0 36px 0;
}

@media (min-width: 1151px) {
  .curriculum-wrapper {
    min-width: 1088px;
  }
}

.curriculum-box {
  position: relative;
  overflow: hidden;
}

.curriculum-slides {
  overflow: hidden;
  width: 100%;
}

.curriculum-slides-container {
  display: flex;
  transition: transform 0.3s ease;
  width: 300%;
}

.curriculum-slide {
  width: 33.33%;
  flex-shrink: 0;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 494px);
  gap: 16px;
  justify-content: center;
  margin: 16px 0;
}

.curriculum-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 114px;
  width: 494px;
  box-sizing: border-box;
}

.curriculum-num {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: bold;
  font-family: 'DIN Alternate', Arial, sans-serif;
  line-height: 1;
  min-width: 60px;
  position: relative;
}

.curriculum-num::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #E0E0E0;
}

.curriculum-text {
  text-align: left;
  flex: 1;
  padding-left: 8px;
}

.curriculum-text h4 {
  margin: 0 0 4px 0;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1.2;
}

.curriculum-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.curriculum-illust {
  position: absolute;
  top: -100px;
  left: 800px;
  z-index: 5;
}

.curriculum-illust img {
  width: 229px;
  height: auto;
}

/* =================================
   アウトカムセクション
   ================================= */

.outcomes-section {
  padding: 60px 20px;
  text-align: center;
}

.outcomes-title {
  font-size: 32px;
  font-weight: bold;
  margin: 12px 0 20px;
}

.outcomes-title .blue {
  color: var(--accent-color);
}

.outcomes-desc {
  font-size: 16px;
  margin-bottom: 40px;
}

.outcomes-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.outcome-item {
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-color);
  text-align: left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.outcome-item.strong {
  border-color: var(--gold-color);
  color: var(--gold-color);
}

.outcome-item::before {
  content: '✔';
  color: var(--primary-color);
  font-weight: bold;
}

.outcome-item.strong::before {
  content: '👑';
  color: var(--gold-color);
}

/* =================================
   ボイスセクション
   ================================= */

.voices-section {
  background: var(--primary-color);
  padding: 30px 20px 80px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.voices-section .section-label {
  background: var(--white);
  color: var(--primary-color);
}

.voices-section .section-label::after {
  border-color: var(--white) transparent transparent transparent;
}

.voices-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 5px;
}

.voices-section .desc {
  font-size: 16px;
  margin-top:10px;
  margin-bottom: 80px;
  line-height: 1.6;
}

.voices-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 324px);
  gap: 88px 17px;
  justify-content: center;
  align-items: start;
}

.voice-card {
  background: var(--white);
  color: var(--text-color);
  border-radius: 16px;
  padding: 12px 17px 17px 17px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  text-align: left;
  height: 187px;
  width: 324px;
  box-sizing: border-box;
}

.voice-card .voice-icon {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.voice-card .voice-icon img {
  width: 195px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.voice-card .top-label {
  font-size: 12px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 500;
}

.voice-card h4 {
  margin: 0 0 12px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.voice-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* =================================
   FAQセクション
   ================================= */

.faq-section {
  background: #eaf8fe;
  padding: 60px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-item.open {
  background: #FEFEEF;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}

.faq-question .icon {
  width: 32px;
  height: 32px;
  background: #bceafc;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 16px;
  flex-shrink: 0;
}

.faq-question .text {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
}

.faq-answer {
  padding: 0 16px 16px 64px;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-toggle {
  margin-left: auto;
  font-size: 24px;
  color: var(--accent-color);
}

.faq-footer {
  margin-top: 32px;
  font-weight: bold;
  color: var(--accent-color);
  font-size: 16px;
}

/* =================================
   価格セクション
   ================================= */

.price-section {
  background: var(--price-blue);
  color: white;
  text-align: center;
  padding: 10px 20px 120px;
  margin-bottom: 0;
}

.key-color-area {
  background: var(--price-blue);
  height: 220px;
  margin: 0;
}

.price-wrapper {
  max-width: 664px;
  margin: 0 auto;
}

.price-wrapper h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
}

.price-box {
  background: white;
  color: var(--text-color);
  border-radius: 8px;
  padding: 50px 40px 40px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  margin-top: 50px;
}

.ribbon {
  background-image: url('../images/ribbon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: white;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  padding-bottom: 10px;
}

.deadline {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.price-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-left: -30px;
}

.original-price-section {
  text-align: center;
}

.original-price-label {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 16px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.original-price-value {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  text-decoration: line-through;
  font-family: 'DIN Alternate', Arial, sans-serif;
}

.current-price-section {
  text-align: center;
}

.current-price {
  font-size: 64px;
  font-weight: bold;
  color: var(--primary-color);
  font-family: 'DIN Alternate', Arial, sans-serif;
  line-height: 1;
}

.price-unit {
  font-size: 18px;
  color: #666;
  margin-left: 8px;
}

.price-table {
  font-size: 18px;
  margin-top: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.price-table .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dotted #9FDCEC;
  padding: 20px 0;
  color: white;
}