* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 大人っぽい薄ピンク（ダスティローズ系） */
  --color-primary: #D3A1A8;
  /* 主役：くすみピンク */
  --color-accent: #B97B86;
  /* 濃いめ：ボタン/強調 */
  --color-secondary: #F6E9EB;
  /* 薄ピンク背景 */
  --color-pink: #FAF1F2;
  /* さらに淡いピンク面 */

  /* 文字・ベース */
  --color-text: #4a4a4a;
  --color-white: #ffffff;

  /* ブラウンは残す（大人感と締まり担当） */
  --color-brown: #6C5456;

  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Zen Maru Gothic', sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.3;
  background-color: var(--color-white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 16px;
  /* デフォを少し広げたいならここ調整 */
  text-align: center;
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
    /* ←ここを減らすと横幅が広く見える */
  }
}

@media (max-width: 768px) {

  section,
  .section {
    padding-left: 12px;
    padding-right: 12px;
  }
}


.hero {
  background: linear-gradient(135deg, #FFF7F8 0%, var(--color-secondary) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-visual{
   width: 100%;
  aspect-ratio: 16 / 13;
  border-radius: 22px;
  overflow: hidden;
  /* 既存の背景/影はそのまま */
  margin-bottom: 15px;
}


.hero-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
    object-position: center 10%; /* ←ここ追加 */
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(139,111,71,0.25);
  display: block;
  margin: 0 auto;

}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211, 161, 168, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}



.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}

.hero-sub{
  font-size: 80%;
  color: rgba(108,84,86,0.75);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 10px 10%;
}

.diploma-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5ede4;
  color: var(--color-brown);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  border: 2px solid #d4a574;
}

.diploma-badge svg {
  width: 20px;
  height: 20px;
  color: #d4a574;
}

.hero-brand {
  text-align: center;
  margin-bottom: 40px;
  margin-left: -20px;
  margin-right: -20px;
  padding: 50px 40px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(254, 250, 245, 0.9) 50%,
      rgba(255, 255, 255, 0.95) 100%);
  border-radius: 0;
  box-shadow:
    0 20px 60px rgba(139, 111, 71, 0.15),
    0 8px 24px rgba(139, 111, 71, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -2px 4px rgba(139, 111, 71, 0.05);
  backdrop-filter: blur(20px);
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg,
      rgba(212, 165, 116, 0.3),
      rgba(255, 255, 255, 0.8),
      rgba(212, 165, 116, 0.3)) 1;
  position: relative;
  overflow: hidden;
}

.hero-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  animation: shimmer 4s ease-in-out infinite;
}

.hero-brand::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 10px;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 700;
  background: linear-gradient(135deg,
      #5a4332 0%,
      #8B6F47 25%,
      #b89968 50%,
      #8B6F47 75%,
      #5a4332 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 3px;
  position: relative;
  animation: gradientShift 5s ease infinite;
  filter: drop-shadow(0 2px 8px rgba(139, 111, 71, 0.2));
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.hero-subtitle-brand {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  background: linear-gradient(135deg,
      #C89B6F 0%,
      #d4a574 50%,
      #C89B6F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0;
  letter-spacing: 10px;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 2px 6px rgba(200, 155, 111, 0.3));
}

.hero-subtitle-brand::before,
.hero-subtitle-brand::after {
  content: '✧';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #C89B6F, #d4a574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  animation: sparkle 2s ease-in-out infinite;
}

.hero-subtitle-brand::before {
  left: -45px;
  animation-delay: 0s;
}

.hero-subtitle-brand::after {
  right: -45px;
  animation-delay: 1s;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

.hero-badge {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.hero-catchphrase {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.5;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 50px;
  font-weight: 500;
  line-height: 1.8;
}

.hero-video-thumbnail {
  max-width: 740px;
  margin: 0 auto 5%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139, 111, 71, 0.15);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video-thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(139, 111, 71, 0.25);
}

.video-thumbnail-img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.hero-video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
  position: relative;
  z-index: 10000;
  max-width: 90%;
  max-height: 90vh;
  width: auto;
}

.modal-video-player {
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  height: auto;
  display: block;
  border-radius: 10px;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 48px;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  transition: transform 0.2s ease;
  z-index: 10001;
}

.video-modal-close:hover {
  transform: scale(1.1);
}

/* YouTube iframeを16:9で崩さないためのラッパー */
.modal-youtube-wrapper {
  position: relative;
  width: min(1000px, 90vw);
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  border-radius: 10px;
  overflow: hidden;
}

.modal-youtube-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-description {
  max-width: 700px;
  margin: 40px auto 0;
  font-size: 16px;
  line-height: 2;
  text-align: left;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
}

.section {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 100px 20px;
}

.what-is {
  padding-bottom: 0;
}

.before-after {
  padding-top: 0;
}

.section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--color-text);
  margin: 20px 0;
}

.what-is {
  background-color: var(--color-white);
}

.what-is-content {
  max-width: 740px;
  margin: 15px auto 0 auto;
  text-align: center;
}

.what-is-definition {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-brown);
  line-height: 1.9;
  margin-bottom: 40px;
}

.highlight-text {
  color: var(--color-primary);
  font-weight: 700;
}

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

.what-is-description {
  background-color: #f9f6f2;
  padding: 40px 50px;
  border-radius: 20px;
  text-align: center;
}

.what-is-description p {
  font-size: 17px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 25px;
}

.what-is-description p:last-child {
  margin-bottom: 0;
}

.emphasis-text {
  font-weight: 600;
  color: var(--color-brown);
}

.solution-text {
  font-weight: 600;
  color: var(--color-brown);
  font-size: 18px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .what-is-definition {
    font-size: 18px;
  }

  .what-is-description {
    padding: 30px 25px;
  }

  .what-is-description p {
    font-size: 15px;
  }

  .solution-text {
    font-size: 16px;
  }
}


.before-after-content {
  max-width: 740px;
  margin: 30px auto 0;
  text-align: center;
}

.before-after-header {
  margin-bottom: 40px;
}

.before-after-title {
  background-color: #f5ede4;
  display: inline-block;
  padding: 20px 60px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-brown);
  margin: 0;
  position: relative;
}

.before-after-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #f5ede4;
}

.before-after-image {
  border-radius: 25px;
}

.before-after0detail-images {
  margin-bottom: 30px;
}

.before-after-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


.before-after-caption {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .what-is {
    padding-bottom: 0;
  }

  .before-after {
    padding-top: 0;
  }

  .before-after-title {
    font-size: 20px;
    padding: 18px 40px;
  }

  .before-after-title::after {
    bottom: -12px;
    border-left-width: 12px;
    border-right-width: 12px;
    border-top-width: 12px;
  }

  .before-after-caption {
    font-size: 18px;
  }

}

@media (max-width: 480px) {
  .what-is {
    padding-bottom: 0;
  }

  .what-is-definition {
    margin-bottom: 20px;
  }

  .what-is-description {
    padding: 20px 15px;
    margin-bottom: 0;
  }

  .what-is-description p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .before-after {
    padding-top: 0;
  }

  .before-after-title {
    font-size: 18px;
    padding: 15px 30px;
  }

  .before-after-title::after {
    bottom: -10px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 10px;
  }

  .before-after-caption {
    font-size: 16px;
  }

  .before-after-header {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.concerns {
  background-color: var(--color-pink);
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.concern-card {
  background-color: var(--color-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.concern-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.concern-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-brown);
  line-height: 1.7;
}

.benefits {
  background-color: var(--color-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.benefit-card {
  background-color: var(--color-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.benefit-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 25px;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}

.faq {
  background-color: var(--color-white);
}

.faq-list {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  background-color: var(--color-white);
  border: 2px solid var(--color-secondary);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.faq-answer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 0;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.faq-question h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-brown);
  margin: 0;
  line-height: 1.6;
}

.faq-answer p {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  margin: 0;
}

.testimonials {
  background-color: var(--color-pink);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.3;
  position: absolute;
  top: 220px;
  left: 30px;
  line-height: 1;
  z-index: 1;
}

.testimonial-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background-color: var(--color-white);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.05);
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-highlight {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-pink));
  color: var(--color-brown);
  padding: 20px 25px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  box-shadow: 0 3px 15px rgba(212, 165, 116, 0.2);
}

.testimonial-highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-pink);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 0;
  color: var(--color-text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 18px;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-brown);
  font-size: 16px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--color-text);
  opacity: 0.8;
}

.curriculum {
  background-color: var(--color-white);
}

.curriculum-path {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 740px;
  margin: 0 auto;
}

.course-step {
  position: relative;
}

.step-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(212, 143, 143, 0.4);
}

.step-badge-advanced {
  background: linear-gradient(135deg, #e8a87c, #d48f8f);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 5px 15px rgba(212, 143, 143, 0.4);
  }

  50% {
    box-shadow: 0 5px 25px rgba(232, 168, 124, 0.6);
  }
}

.course-main-card {
  background-color: var(--color-white);
  border-radius: 30px;
  padding: 50px 45px;
  box-shadow: 0 10px 40px rgba(139, 111, 71, 0.15);
  position: relative;
  overflow: visible;
}

.course-main-card-advanced {
  background: linear-gradient(135deg, #fff9f5 0%, #fef5ef 100%);
  border: 3px solid var(--color-accent);
}

.upgrade-ribbon {
  position: absolute;
  top: 25px;
  right: -35px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #8b6f47;
  padding: 8px 60px;
  transform: rotate(40deg);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
  letter-spacing: 1px;
  width: 200px;
  text-align: center;
}

.course-header {
  margin-bottom: 30px;
}

.course-title-box {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.course-main-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.course-period {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
}

.course-title-box .diploma-badge {
  margin-top: 5px;
  margin-bottom: 0;
}

.course-description-box {
  background-color: rgba(244, 232, 220, 0.5);
  padding: 25px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid var(--color-primary);
}

.course-description-box p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin: 0;
}

.lesson-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  background-color: var(--color-white);
  border-radius: 12px;
  border: 2px solid var(--color-secondary);
  transition: all 0.3s ease;
  width: 100%;
  overflow: hidden; /* はみ出した分を強制カット */
}

.lesson-item:hover {
  border-color: var(--color-primary);
  transform: translateX(5px);
}

.lesson-number {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .lesson-number {
    display: inline-block;
    margin: 0 auto 10px;
    text-align: center;
  }

  .lesson-item {
    text-align: center;
  }

  .lesson-title {
    display: block;
    text-align: center;
  }
}


.lesson-title {
  width: 100%;
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  flex: 1 !important;    /* 残りの幅だけを使うよう指定 */
  min-width: 0 !important; /* Flex子要素の突き抜けを防ぐ魔法の1行 */
}

.step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  position: relative;
}

.arrow-simple-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brown);
  text-align: center;
  margin: 0;
}

.course-goal {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  border: 2px solid #81c784;
}

.course-goal h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 15px;
  text-align: center;
}

.course-goal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.course-goal li {
  padding-left: 0;
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}

.course-goal li::before {
  content: '✨';
  position: static;
  margin-right: 8px;
  font-size: 18px;
}

.course-schedule-box {
  background-color: rgba(255, 249, 245, 0.8);
  padding: 25px 30px;
  border-radius: 15px;
  margin-top: 25px;
  border: 2px solid var(--color-secondary);
}


.course-schedule-box h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 20px;
  text-align: center;
}

.schedule-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;

}

.schedule-column h5 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-secondary);
}

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

.schedule-dates li {
  padding: 10px 15px;
  margin-bottom: 8px;
  background-color: var(--color-white);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  border-left: 4px solid var(--color-accent);
  transition: all 0.3s ease;
}

.schedule-dates li:hover {
  transform: translateX(5px);
  border-left-color: var(--color-primary);
}

.course-note {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
  text-align: center;
  margin-top: 15px;
}

.course-price-box {
  margin-top: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #fff8f0, #ffe8d6);
  border-radius: 20px;
  border: 3px solid var(--color-accent);
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-highlight {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.price-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brown);
  font-family: var(--font-serif);
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-serif);
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(139, 111, 71, 0.1);
}

.price-unit {
  font-size: 32px;
  font-weight: 700;
  margin-left: 5px;
}

.price-tax {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .schedule-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-amount {
    font-size: 36px;
  }

  .price-unit {
    font-size: 24px;
  }

  .course-price-box {
    padding: 20px;
  }
}



.personal-lesson-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.personal-lesson-icon {
  flex-shrink: 0;
  font-size: 18px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .personal-lesson-note {
    padding: 20px 25px;
    margin: 40px 20px 0;
  }

  .personal-lesson-text {
    font-size: 13px;
    flex-direction: column;
    gap: 8px;
  }
}

.cta-final {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-pink) 100%);
}

.cta-final-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 70px 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(139, 111, 71, 0.15);
  text-align: center;
}

.cta-final-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-final-text {
  font-size: 16px;
  line-height: 2.2;
  color: var(--color-text);
  margin-bottom: 20px;
}

.cta-note {
  font-size: 14px;
  color: var(--color-primary);
  margin-top: 20px;
  font-weight: 500;
}

.pricing-card {
  max-width: 700px;
  margin: 60px auto 0;
  background-color: var(--color-white);
  padding: 60px 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(139, 111, 71, 0.15);
  text-align: center;
}

.price-tag {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-brown);
  margin: 30px 0;
}

.price-tag span {
  font-size: 24px;
  font-weight: 400;
}

.price-note {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 30px;
  opacity: 0.8;
}

.features-list {
  text-align: left;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

.features-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  font-size: 16px;
  list-style: none;
}

.features-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 18px;
}

.cta-button {
  display: inline-block;
  /* ★ここを inline-block に変更！ */
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  box-shadow: 0 10px 30px rgba(185, 123, 134, 0.28);
  color: var(--color-white);
  padding: 20px 60px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: pulse 2s ease-in-out infinite;
  margin: 5% auto 0;
  /* 中央寄せ */
  text-align: center;
}



.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}


.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(185, 123, 134, 0.45);
}

.cta-button:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 10px 25px rgba(185, 123, 134, 0.35);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(185, 123, 134, 0.28);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(185, 123, 134, 0.45);
  }
}

.footer {
  background-color: var(--color-brown);
  color: var(--color-white);
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer-description {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 30px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copyright {
  font-size: 13px;
  opacity: 0.7;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.courses-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid var(--color-secondary);
}

.courses-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 50px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.course-card {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(139, 111, 71, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.2);
}

.course-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-secondary), #f4e8dc);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.course-placeholder {
  width: 120px;
  height: 120px;
  background-color: var(--color-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.emoji-icon {
  font-size: 60px;
}

.course-info {
  padding: 30px 25px;
}

.course-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 15px;
}

.course-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.course-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-secondary);
}

.course-duration {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

.course-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .diploma-badge {
    font-size: 15px;
    padding: 8px 16px;
    margin-bottom: 16px;
  }

  .diploma-badge svg {
    width: 18px;
    height: 18px;
  }

  .hero-brand {
    padding: 40px 20px;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-brand::after {
    top: 8px;
    left: 0;
    right: 0;
    bottom: 8px;
  }

  .hero-title {
    font-size: 38px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
  }

  .hero-subtitle-brand {
    font-size: 32px;
    letter-spacing: 6px;
  }

  .hero-subtitle-brand::before,
  .hero-subtitle-brand::after {
    font-size: 20px;
  }

  .hero-subtitle-brand::before {
    left: -30px;
  }

  .hero-subtitle-brand::after {
    right: -30px;
  }

  .hero-catchphrase {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .play-button svg {
    width: 60px;
    height: 60px;
  }

  .video-modal-close {
    top: -40px;
    font-size: 36px;
  }

  .section {
    padding: 20px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .what-is-intro {
    font-size: 22px;
  }

  .highlight-number {
    font-size: 28px;
  }

  .what-is-description {
    padding: 30px 20px;
  }

  .what-is-description p {
    font-size: 16px;
  }

  .what-is-highlight {
    font-size: 18px;
  }

  .concerns-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .concern-icon {
    font-size: 50px;
  }

  .concern-card h3 {
    font-size: 18px;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-item {
    padding: 25px 20px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .course-main-card {
    padding: 35px 10px;
  }

  .course-main-title {
    font-size: 24px;
  }

  .lesson-item {
    flex-direction: column;
    gap: 10px;
    padding: 18px 8px;
  }

  .arrow-simple-text {
    font-size: 16px;
  }

  .upgrade-ribbon {
    font-size: 12px;
    padding: 6px 40px;
  }

  .step-arrow {
    padding: 40px 0;
  }

  .pricing-card {
    padding: 40px 30px;
  }

  .cta-final-box {
    padding: 50px 30px;
  }

  .cta-final-title {
    font-size: 26px;
  }

  .cta-final-text {
    font-size: 15px;
  }

  .price-tag {
    font-size: 40px;
  }

  .cta-button {
    padding: 18px 40px;
    font-size: 16px;
  }
}

.story {
  background: linear-gradient(180deg, var(--color-white) 0%, #f9f7f4 100%);
}

.story-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.story-top {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.speech-bubble {
  background-color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 30px;
  padding: 25px 35px;
  flex: 1;
  position: relative;
  margin-top: 20px;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 40px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 0px solid transparent;
  border-top: 20px solid var(--color-white);
}

.speech-bubble p {
  font-size: 18px;
  font-family: var(--font-serif);
  color: var(--color-brown);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.character-illustration {
  min-width: 100px;
  text-align: center;
  padding-top: 20px;
}

.character-head {
  font-size: 80px;
  margin-bottom: 10px;
}

.character-body {
  width: 60px;
  height: 50px;
  background: linear-gradient(135deg, #d4a574, #c89b6f);
  border-radius: 10px;
  margin: 0 auto;
}

.story-problems {
  background-color: #ede7dd;
  padding: 50px 40px 60px;
  border-radius: 30px 30px 0 0;
  margin-bottom: 60px;
  position: relative;
}

.story-problems::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 30px solid #ede7dd;
}

.story-intro {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 30px;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 20%, var(--color-primary) 80%, transparent 100%);
  margin: 30px 0;
  position: relative;
}

.divider-line::before,
.divider-line::after {
  content: '✧';
  position: absolute;
  top: -12px;
  color: var(--color-primary);
  font-size: 20px;
}

.divider-line::before {
  left: 20%;
}

.divider-line::after {
  right: 20%;
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.problem-item {
  background-color: var(--color-white);
  padding: 20px 25px;
  border-radius: 15px;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.story-text-with-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0;
  gap: 30px;
}

.story-worry-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.story-text {
  text-align: center;
  padding: 40px 30px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-brown);
  line-height: 2;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 20px;
  width: 100%;
}

.story-image {
  max-width: 600px;
  margin: 60px auto;
}

.story-image svg {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 111, 71, 0.15);
}

.story-realization {
  background-color: var(--color-white);
  padding: 50px 40px;
  border-radius: 20px;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.story-realization p {
  margin: 0;
}

.story-highlight {
  background-color: #f8e8e5;
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2;
  color: var(--color-brown);
  font-weight: 500;
  text-align: center;
  border-left: 4px solid var(--color-primary);
}

.story-highlight p {
  margin: 0;
}

.story-future-image-wrapper {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.story-future-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.story-reflection {
  background-color: var(--color-white);
  padding: 50px 40px;
  border-radius: 20px;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.story-reflection p {
  margin: 0;
}

.highlight-text {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 17px;
}

.instructor {
  background-color: var(--color-secondary);
}

.instructor-card {
  max-width: 1000px;
  margin: 15px auto 0 auto;
  background-color: var(--color-white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(139, 111, 71, 0.15);
  display: block;
  grid-template-columns: 350px 1fr;
  gap: 0;
}

.instructor-image {
  padding: 30px 40px 10px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.instructor-photo {
  width: 260px;
  height: 260px;
  background-color: var(--color-white);
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    object-position: center 0;
}

.instructor-stars {
  display: flex;
  gap: 20px;
  font-size: 30px;
  color: var(--color-primary);
}

.instructor-stars span {
  animation: twinkle 2s infinite;
}

.instructor-stars span:nth-child(2) {
  animation-delay: 0.3s;
}

.instructor-stars span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.instructor-content {
  padding: 30px 50px;
}

.instructor-name-box {
  border-bottom: 2px solid var(--color-secondary);
  text-align: center;
}


.instructor-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-brown);
  text-align: center;
}

.instructor-subtitle {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 600;
  margin: 15px 0;
  text-align: center;
}

.instructor-bio {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 35px;
  text-align: center;
  padding: 0 10%;
}

.instructor-bio p {
  margin: 0;
}

.instructor-bio .highlight-keyword {
  color: var(--color-primary);
  font-weight: 700;
}

.instructor-bio .voice-quote {
  color: var(--color-primary);
  font-weight: 600;
}

.instructor-bio .mission-text {
  color: var(--color-primary);
  font-weight: 700;
}

.instructor-bio .final-message {
  color: var(--color-primary);
  font-weight: 700;
}

.instructor-credentials {
  background-color: var(--color-secondary);
  padding: 25px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.instructor-credentials h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 15px;
}

.instructor-credentials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.instructor-credentials li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-text);
}

.instructor-credentials li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.instructor-message {
  background: linear-gradient(135deg, #f8e8e5, #f4e8dc);
  padding: 25px 30px;
  border-radius: 15px;
  border-left: 4px solid var(--color-primary);
}

.instructor-message p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin: 0;
  font-style: italic;
}

@media (max-width: 968px) {
  .instructor-card {
    grid-template-columns: 1fr;
  }

  .instructor-image {
    padding: 30px 30px 10px 30px;
  }

  .instructor-content {
    padding: 20px 40px 50px 40px;
  }

}

@media (max-width: 768px) {
  .story-top {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .character-illustration {
    display: none;
  }

  .speech-bubble {
    flex: none;
  }

  .speech-bubble p {
    font-size: 16px;
  }

  .story-problems {
    padding: 40px 25px 50px;
  }

  .story-problems::after {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 25px solid #ede7dd;
    bottom: -25px;
  }


  .story-text {
    font-size: 16px;
  }


  .instructor-content {
    padding: 20px 30px 40px 30px;
  }

  .instructor-name {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .diploma-badge {
    font-size: 14px;
    padding: 7px 14px;
    margin-bottom: 12px;
  }

  .diploma-badge svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    padding: 5% 15px;
  }

  .hero-brand {
    padding: 30px 15px;
    margin-bottom: 25px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-brand::after {
    top: 6px;
    left: 0;
    right: 0;
    bottom: 6px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-title {
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .hero-subtitle-brand {
    font-size: 24px;
    letter-spacing: 4px;
  }

  .hero-subtitle-brand::before,
  .hero-subtitle-brand::after {
    font-size: 16px;
  }

  .hero-subtitle-brand::before {
    left: -22px;
  }

  .hero-subtitle-brand::after {
    right: -22px;
  }

  .section-title {
    font-size: 24px;
  }

  .benefit-card,
  .testimonial-card,
  .month-content {
    padding: 30px 20px;
  }

  .story-problems {
    padding: 30px 15px 40px;
  }

  .story-problems::after {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 20px solid #ede7dd;
    bottom: -20px;
  }

  .story-realization,
  .story-reflection {
    padding: 30px 15px;
    font-size: 14px;
  }

  .story-text {
    font-size: 15px;
    padding: 25px 15px;
  }


  .instructor-content {
    padding: 20px 20px 30px 20px;
  }

  .instructor-name {
    font-size: 22px;
  }

  .instructor-credentials,
  .instructor-message {
    padding: 20px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .courses-section {
    margin-top: 60px;
    padding-top: 40px;
  }

  .course-info {
    padding: 25px 20px;
  }
}


@media (max-width: 768px) {

  /* コンテナ全体を少し広げる */
  .container {
    padding: 0 3px;
  }

  /* 各セクションも左右を詰める */
  .section {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* 受講生の声：テキスト領域を最大化 */
  .testimonial-card {
    flex-direction: column;
    /* 縦並びにする */
    align-items: center;
  }

  .testimonial-content {
    width: 100%;
    /* ←これが最重要 */
    max-width: none;
    padding: 10px;
    /* 少しだけ余白を残す */
    text-align: left;
  }

  /* 画像を中央寄せ＆幅調整 */
  .testimonial-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
  }

  /* テキストの段落間隔を少し広げて読みやすく */
  .testimonial-text {
    line-height: 1.8;
    font-size: 0.95rem;
  }
}

.personal-lesson-note {
  background-color: #fbf9f7;
  border-radius: 20px;
  padding: 10px 30px;
  margin: 70px auto 0 auto;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.08);
  border-left: 6px solid var(--color-secondary);
}

/* タイトル */
.personal-lesson-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 20px;
  position: relative;
}

.personal-lesson-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 10px auto 0;
  border-radius: 2px;
}

/* 本文 */
.personal-lesson-text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 650px;
}


.hero-offer-period {
  display: inline-block;
  text-align: center;
  padding: 14px 22px;
  border-radius: 12px;
 background: rgba(211,161,168,0.10);
  border: 1px solid rgba(211,161,168,0.28);
  /* 顔laboカラーの淡いゴールド */
  backdrop-filter: blur(3px);
  animation: fadeIn 1s ease-out;
  margin-bottom: 5%;
}

.offer-badge {
  display: inline-block;
  font-size: 13px;
  padding: 4px 10px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 6px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.offer-date {
  font-size: 20px;
  color: var(--color-brown);
  font-weight: 700;
  margin-bottom: 4px;
}

.offer-note {
  font-size: 12px;
  color: rgba(108,84,86,0.75);
  margin-top: 2px;

}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.curriculum-lead{
  margin: 18px auto 0;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;

  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.7;

  color: var(--color-brown);
  background: rgba(248, 232, 229, 0.75); /* 薄ピンクを“ふわっ” */
  border: 1px solid rgba(212, 143, 143, 0.28);
  box-shadow: 0 10px 26px rgba(139, 111, 71, 0.08);

  position: relative;
}

.curriculum-lead-clean{
  display: block;
  position: relative;
  margin-top: 18px;
  padding: 6px 0 14px;

  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.7;

  color: var(--color-brown);
}

/* 下の細い装飾ライン */
.curriculum-lead-clean::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:180px;
  height:2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(231,166,182,.9),
    rgba(200,164,107,.8),
    transparent
  );
}

/* 左右に小さなドットを入れて“ワクワク” */
.curriculum-lead-clean::before{
  content:"✦";
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  font-size:14px;
  color: rgba(231,166,182,.8);
}

.curriculum-inline-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  text-align: left;
}

.curriculum-inline-list li{
  position: relative;
  padding-left: 18px;
  line-height: 1.8;
}

.curriculum-inline-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* 共通リスト */
.curriculum-inline-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  text-align: left;
}

.curriculum-inline-list li{
  position: relative;
  padding-left: 22px;
  line-height: 1.9;
  font-size: 15px;
}

/* 対象用チェック */
.curriculum-inline-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ベネフィットはキラキラ */
.benefit-list li::before{
  content: "✓";
  color: var(--color-accent);
  font-size: 14px;
}

/* 内容はシンプルドット */
.content-list li::before{
  content: "✓";
  color: rgba(185,123,134,0.7);
  font-size: 10px;
  top: 6px;
}

.business-list li::before{
  content: "✓";
  color: var(--color-accent);
  font-size: 12px;
  top: 4px;
}

/* ===== Support Phase Layout ===== */
.support-phase-wrap{
  gap: 18px;
  text-align: left; /* ← 左寄せ統一 */
  display: flex ;
  flex-direction: column ; /* 絶対に縦並びにする */
  width: 100% ;
}

/* フェーズカード共通 */
.support-phase{
  background: rgba(255,255,255,0.95);
  border: 2px solid var(--color-secondary);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.08);
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* フェーズごとの“雰囲気” */
.support-phase.phase-1{
  background: linear-gradient(180deg, rgba(250,241,242,0.55), rgba(255,255,255,0.95));
}
.support-phase.phase-2{
  background: linear-gradient(180deg, rgba(246,233,235,0.30), rgba(255,255,255,0.95));
  border-color: rgba(185,123,134,0.35);
}

/* ヘッダー */
.support-phase-head{
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.phase-badge{
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 8px 18px rgba(185,123,134,0.22);
}
.support-phase-title{
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-brown);
  margin: 0;
}
.support-phase-sub{
  margin: 0;
  font-size: 13px;
  color: rgba(108,84,86,0.75);
  font-weight: 600;
}

/* 既存 list を“チェック付き”のまま左寄せに */
.support-phase .curriculum-inline-list{
  margin: 10px 0 0;
  padding-left: 0;
}
.support-phase .curriculum-inline-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}
.support-phase .curriculum-inline-list li::before{
  content: "✓";
  font-weight: 900;
  color: var(--color-accent);
  margin-top: 1px;
}

/* ===== Level Up Connector ===== */
.support-levelup{
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 100%;
}
.levelup-line{
  width: 100%;
  max-width: 520px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(185,123,134,.35),
    rgba(212,165,116,.28),
    rgba(185,123,134,.35),
    transparent
  );
}
.levelup-chip{
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-brown);
  background: rgba(248,232,229,0.75);
  border: 1px solid rgba(212,143,143,0.28);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(139,111,71,0.08);
}
.levelup-arrow{
  font-size: 16px;
  color: rgba(185,123,134,0.9);
  animation: bounceArrow 1.4s ease-in-out infinite;
}
@keyframes bounceArrow{
  0%,100%{ transform: translateY(0); opacity: .8; }
  50%{ transform: translateY(4px); opacity: 1; }
}

/* ===== “成長ゲージ” ===== */
.progress-rail{
  margin: 12px 0 10px;
  padding: 12px 12px 10px;
  border-radius: 14px;
  background: rgba(250,241,242,0.55);
  border: 1px solid rgba(212,143,143,0.22);
  position: relative;
}
.progress-fill{
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), rgba(212,165,116,.75));
  width: 52%;
  box-shadow: 0 8px 18px rgba(185,123,134,0.20);
  position: relative;
  overflow: hidden;
}
/* キラっと流れる演出 */
.progress-fill::after{
  content:"";
  position:absolute;
  top:0; left:-40%;
  width:40%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  animation: shimmer2 2.6s ease-in-out infinite;
}
@keyframes shimmer2{
  0%{ left:-40%; }
  60%{ left:110%; }
  100%{ left:110%; }
}



/* 補足 */
.support-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(108,84,86,0.78);
  line-height: 1.7;
}


.premium-closing{
  margin: 10px 5%;
  text-align: center;
  line-height: 1.9;
}

.closing-main{
  font-size: 110%;
  font-weight: 700;
  color: #6C5456;
  letter-spacing: .04em;
}

.closing-sub{
  margin-top: 10px;
  font-size: 100%;
  font-weight: 600;
  color: rgba(185,123,134,0.95);
  letter-spacing: .06em;
}

/* SPでも崩れない */
@media (max-width: 768px){
  .support-phase-title{ font-size: 17px; }
  .progress-labels{ font-size: 10.5px; }
}

/* ===== Elite (Top Tier) ===== */
.step-badge-elite{
  background: linear-gradient(135deg, #C89B6F, #d4a574, #B97B86);
  box-shadow: 0 10px 26px rgba(212,165,116,0.25);
}

.course-main-card-elite{
  position: relative;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;

  border: 4px solid rgba(212,165,116,0.5);
  box-shadow:
    0 20px 50px rgba(139,111,71,0.15),
    inset 0 1px 1px rgba(255,255,255,0.8);
}

/* メタリック枠（本体） */
.course-main-card-elite::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 30px;
  padding: 2px; /* 枠の太さ */
  background: linear-gradient(135deg,
    rgba(255,244,214,0.9),
    rgba(212,165,116,0.95),
    rgba(255,255,255,0.85),
    rgba(185,123,134,0.55),
    rgba(212,165,116,0.95)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
  z-index: 3;
  box-shadow:
    0 18px 50px rgba(139,111,71,0.12),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

/* うっすら光が走る（高級感） */
.course-main-card-elite::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.25) 50%,
    transparent 60%
  );
  transform: translateX(-30%) rotate(10deg);
  animation: eliteSweep 6.5s ease-in-out infinite;
  pointer-events:none;
  z-index: 2;
  opacity: .6;
}
@keyframes eliteSweep{
  0%   { transform: translateX(-40%) rotate(10deg); }
  55%  { transform: translateX(35%) rotate(10deg); }
  100% { transform: translateX(35%) rotate(10deg); }
}

@keyframes metalShine{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 100% 50%; }
}

/* 中身を枠より手前に */
.course-main-card-elite > *{
  position: relative;
  z-index: 1;
}

.elite-ribbon{
  position:absolute;
  top: 22px;
  right: -44px;
  transform: rotate(40deg);
  width: 220px;
  text-align:center;
  padding: 8px 0;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  color: #6C5456;
  background: linear-gradient(135deg, #ffd89a, #d4a574, #fff2d6);
  box-shadow: 0 10px 22px rgba(212,165,116,0.22);
  border: 1px solid rgba(108,84,86,0.15);
}

.course-main-title-elite{
  background: linear-gradient(135deg, #5a4332 0%, #8B6F47 35%, #d4a574 60%, #5a4332 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .06em;
}
.course-period-elite{
  color: rgba(185,123,134,0.95);
  font-weight: 800;
}
.course-req{
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(108,84,86,0.70);
}

/* 説明ボックスを格上げ */
.course-description-box-elite{
  background: linear-gradient(135deg, rgba(246,233,235,0.60), rgba(250,241,242,0.55));
  border-left: 5px solid rgba(212,165,116,0.55);
  box-shadow: 0 10px 26px rgba(139,111,71,0.08);
}

/* lesson-itemのベース統一＋上品に */
.lesson-item-elite{
  border-color: rgba(212,165,116,0.25);
  background: rgba(255,255,255,0.92);
}
.lesson-number-elite{
  background: linear-gradient(135deg, #C89B6F, #d4a574, #B97B86);
  box-shadow: 0 8px 18px rgba(212,165,116,0.18);
}

/* Elite用チェック */
.elite-list li::before{
  content:"✓";
  color: rgba(185,123,134,0.95);
  font-weight: 900;
}

/* サポートのフェーズも“格上げ” */
.elite-support-wrap .support-phase{
  border-color: rgba(212,165,116,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,241,242,0.42));
}
.phase-badge-elite{
  background: linear-gradient(135deg, #d4a574, #C89B6F, #B97B86);
  box-shadow: 0 10px 22px rgba(212,165,116,0.18);
}
.elite-levelup .levelup-chip{
  border-color: rgba(212,165,116,0.28);
  background: rgba(255,242,214,0.55);
}

/* 成長ゲージもゴールド寄せ */
.elite-progress{
  background: rgba(255,242,214,0.35);
  border-color: rgba(212,165,116,0.25);
}
.elite-progress-fill{
  width: 78%;
  background: linear-gradient(90deg, #B97B86, #d4a574);
}




.phase-badge-elite{
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  background: linear-gradient(135deg, #d4a574, #C89B6F, #B97B86);
  color:white;
  box-shadow: 0 8px 20px rgba(212,165,116,0.25);
  white-space:nowrap;
}

.support-phase-title{
  font-weight:800;
  font-size:18px;
  letter-spacing:.05em;
}

/* =========================
  受講生インタビュー動画
========================= */

.testimonial-video-wrapper{
  margin-top: 10px;
  padding: 40px 20px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(250,241,242,0.8), rgba(255,255,255,0.95));
  border: 1px solid rgba(185,123,134,0.25);
  box-shadow: 0 25px 60px rgba(139,111,71,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* うっすらシャイン */
.testimonial-video-wrapper::before{
  content:"";
  position:absolute;
  top:-100%;
  left:-100%;
  width:200%;
  height:200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.4) 50%,
    transparent 60%
  );
  transform: rotate(25deg);
  animation: shineMove 6s infinite;
  pointer-events:none;
  opacity:.5;
}

@keyframes shineMove{
  0%{ transform: translateX(-50%) translateY(-50%) rotate(25deg); }
  100%{ transform: translateX(50%) translateY(50%) rotate(25deg); }
}

.testimonial-video-title{
  font-family: var(--font-serif);
  font-size: 100%;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-brown);
}

.testimonial-video-sub{
  font-size: 14px;
  margin-bottom: 30px;
  color: rgba(108,84,86,0.7);
  font-weight: 500;
}

.testimonial-video-box{
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(139,111,71,0.18);
  border: 2px solid rgba(212,165,116,0.3);
}

.testimonial-video-box iframe{
  width: 100%;
  height: 100%;
}

.premium-hero-visual{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  /* 既存の背景/影はそのまま */
}

.premium-hero-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
    object-position: center 73%; /* ←ここ追加 */

}

.elite-hero-visual{
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(250,241,242,0.9), rgba(255,242,214,0.35));
  border: 1px solid rgba(212,165,116,0.22);
  box-shadow: 0 16px 40px rgba(139,111,71,0.12);
}

.elite-hero-visual img{
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
}

.elite-hero-glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(212,165,116,0.18), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(185,123,134,0.18), transparent 50%);
  pointer-events:none;
}


.consult-box{
  margin: 30px 0 18px;
  padding: 26px 20px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(250,241,242,0.9),
    rgba(255,255,255,0.95)
  );
  border: 1px solid rgba(185,123,134,0.25);
  text-align: center;
  box-shadow: 0 14px 35px rgba(139,111,71,0.10);
}

.consult-lead{
  font-weight: 700;
  font-size: 17px;
  color: #6C5456;
  line-height: 1.8;
}

.consult-sub{
  margin-top: 10px;
  font-size: 14px;
  color: rgba(108,84,86,0.75);
  font-weight: 600;
}

/* 既存CTAの pulse をそのまま使う前提で、個別相談用だけ配色変更 */
.cta-button--consult{
  background: linear-gradient(135deg, #d4a574, #C89B6F);
  box-shadow: 0 10px 30px rgba(212,165,116,0.35);
}

/* hover / active も既存と同じ動きで、影だけ少し合わせる */
.cta-button--consult:hover{
  box-shadow: 0 20px 50px rgba(212,165,116,0.45);
}
.cta-button--consult:active{
  box-shadow: 0 10px 25px rgba(212,165,116,0.38);
}


/* =========================
  Elite Closing + Price + CTA
========================= */

.elite-closing{
  margin-top: 28px;
  padding: 26px 22px;
  border-radius: 26px;
  text-align: center;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.96),
    rgba(250,241,242,0.55)
  );
  border: 1px solid rgba(212,165,116,0.28);
  box-shadow: 0 18px 44px rgba(139,111,71,0.10);
  position: relative;
  overflow: hidden;
}

/* うっすらシャイン（プレミアムと系統統一） */
.elite-closing::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.55),
    transparent
  );
  transform: translateX(-120%);
  animation: eliteShine 5s ease-in-out infinite;
  pointer-events:none;
  opacity: .7;
}

.elite-closing-main{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(108,84,86,0.88);
  line-height: 1.8;
}

.elite-closing-sub{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .06em;
  color: rgba(108,84,86,0.92);
}

.elite-closing-strong{
  background: linear-gradient(135deg, #5a4332 0%, #8B6F47 35%, #d4a574 60%, #5a4332 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.elite-closing-accent{
  color: rgba(185,123,134,0.95);
}

/* 値段ボックスをElite寄せに微調整（既存UIに上品足し） */
.course-price-box-elite .price-highlight-elite{
  border-radius: 22px;
}

/* CTA上の案内文 */
.elite-consult-text{
  margin: 18px 0 10px;
  text-align: center;
  font-weight: 700;
  color: rgba(108,84,86,0.78);
}

/* consultボタン色（アニメは .cta-button 側で統一） */
.cta-button-consult{
  background: linear-gradient(135deg, #d4a574, #C89B6F);
  box-shadow: 0 10px 30px rgba(212,165,116,0.35);
}
.cta-button-consult:hover{
  box-shadow: 0 20px 50px rgba(212,165,116,0.45);
}
.cta-button-consult:active{
  box-shadow: 0 10px 25px rgba(212,165,116,0.38);
}

/* =========================
  4つのポイント
========================= */
.points{
  padding: 60px 12px;
  background: linear-gradient(180deg, rgba(250,241,242,0.55), rgba(255,255,255,0.96));
}

.points-number-accent{
  color: rgba(185,123,134,0.95);
  font-weight: 900;
}

.points-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.point-card{
  position: relative;
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(185,123,134,0.18);
  box-shadow: 0 18px 45px rgba(139,111,71,0.10);
  padding: 26px 22px 22px;
  overflow: hidden;
}

.point-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 10%, rgba(185,123,134,0.12), transparent 42%),
    radial-gradient(circle at 85% 25%, rgba(212,165,116,0.10), transparent 44%);
  opacity: .9;
}

.point-badge{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  background: linear-gradient(135deg, rgba(185,123,134,0.95), rgba(212,165,116,0.90));
  box-shadow: 0 12px 26px rgba(212,165,116,0.18);
  border: 1px solid rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

/* バッジとタイトルを横並びにする */
.point-header {
  display: flex;
  align-items: center; /* 上下中央揃え */
  gap: 15px;           /* バッジとタイトルの間隔 */
  margin-bottom: 10px;
  justify-content: center;
}

.point-title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(108,84,86,0.95);
  line-height: 1.35;
}

.point-title-sub{
  display:inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(185,123,134,0.10);
  border: 1px solid rgba(185,123,134,0.18);
  font-size: 14px;
  font-weight: 900;
}
/* 追加した画像エリアの設定 */
.point-image {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.point-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.point-text{
  margin: 0 0 12px;
  color: rgba(108,84,86,0.78);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 600;
}

.point-emphasis{
  margin: 10px 0 12px;
  color: rgba(185,123,134,0.95);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 900;
}

.point-quote{
  margin: 14px 0 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(250,241,242,0.9);
  border: 1px dashed rgba(185,123,134,0.28);
  color: rgba(108,84,86,0.78);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.75;
}

.point-card-last{
  border-color: rgba(212,165,116,0.22);
}

/* 画像入れる場合（任意） */
.point-illust{
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 10px auto 0;
}

@media (max-width: 768px){
  .points-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .point-card{
    padding: 22px 18px 18px;
    border-radius: 22px;
  }
  .point-title{
    font-size: 17px;
  }
  .point-text, .point-emphasis, .point-quote{
    font-size: 13.5px;
  }
}


/* =========================
  RESULTS SECTION
========================= */

.results{
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,1),
    rgba(250,241,242,0.6)
  );
  text-align: center;
}

.results-title{
  margin-bottom: 18px;
}

.results-lead{
  font-size: 16px;
  font-weight: 600;
  color: rgba(108,84,86,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.results-highlight{
  font-weight: 800;
  background: linear-gradient(135deg, #8B6F47, #d4a574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* グリッド */
.results-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* カード */
.result-item{
  padding: 28px 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(185,123,134,0.18);
  box-shadow: 0 20px 55px rgba(139,111,71,0.08);
  transition: .3s;
  position: relative;
  overflow: hidden;
}

/* うっすら光 */
.result-item::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(212,165,116,0.12), transparent 40%);
  pointer-events: none;
}

.result-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(139,111,71,0.15);
}

/* 数字デザイン */
.result-number{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .08em;
  background: linear-gradient(135deg, #5a4332 0%, #8B6F47 35%, #d4a574 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.result-text{
  font-size: 14px;
  font-weight: 700;
  color: rgba(108,84,86,0.75);
}

/* 最高売上だけ強調 */
.result-item-gold{
  border: 1px solid rgba(212,165,116,0.35);
  box-shadow: 0 25px 60px rgba(212,165,116,0.25);
}

/* SP */
@media(max-width:768px){
  .results-grid{
    grid-template-columns: 1fr;
  }
}

.results-visual{
  margin: 28px auto 40px;
  max-width: 90%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 70px rgba(139,111,71,0.18);
  border: 2px solid rgba(212,165,116,0.25);
}

/* うっすらラグジュアリー光 */
.results-visual::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(212,165,116,0.15), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(185,123,134,0.12), transparent 60%);
  pointer-events:none;
}

.results-visual img{
  width:100%;
  display:block;
}

.youtube-thumb{
  position: relative;
  width: 100%;
  max-width: 900px;      /* 既存の testimonial-video-box に合わせるならここ */
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(139,111,71,0.18);
  border: 2px solid rgba(212,165,116,0.3);
  background: #fff;
}

.youtube-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.youtube-play{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 54px;
  color: #fff;
  text-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.youtube-thumb::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
  pointer-events:none;
}

.youtube-thumb:hover{
  transform: translateY(-3px);
  transition: .3s;
}

/* =========================
  Elite Message (締めカード)
========================= */
.elite-message{
  margin: 26px auto 0;
  max-width: 900px;
  padding: 22px 22px;
  border-radius: 26px;
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.96),
    rgba(250,241,242,0.55)
  );
  border: 1px solid rgba(212,165,116,0.30);
  box-shadow: 0 18px 44px rgba(139,111,71,0.10);
  position: relative;
  overflow: hidden;
}

/* うっすらシャイン */
.elite-message::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.30) 50%,
    transparent 60%
  );
  transform: translateX(-30%) rotate(10deg);
  animation: eliteMessageSweep 6.5s ease-in-out infinite;
  pointer-events:none;
  opacity: .6;
}
@keyframes eliteMessageSweep{
  0%   { transform: translateX(-40%) rotate(10deg); }
  55%  { transform: translateX(35%) rotate(10deg); }
  100% { transform: translateX(35%) rotate(10deg); }
}

.elite-message-lead{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: rgba(108,84,86,0.92);
  line-height: 1.85;
  letter-spacing: .04em;
}

.elite-message-body{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: rgba(108,84,86,0.86);
  line-height: 1.9;
  letter-spacing: .04em;
}

/* 強調（ピンク×ゴールド） */
.elite-message-em{
  background: rgba(185,123,134,0.12);
  border: 1px solid rgba(185,123,134,0.22);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 900;
}

.elite-message-strong{
  background: linear-gradient(135deg, #5a4332 0%, #8B6F47 35%, #d4a574 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* 区切り線 */
.elite-message-divider{
  width: min(420px, 90%);
  height: 2px;
  margin: 14px auto 14px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(185,123,134,.35),
    rgba(212,165,116,.35),
    rgba(185,123,134,.35),
    transparent
  );
}

/* SPでだけ改行を有効化 */
.sp-only{ display: none; }
@media (max-width: 768px){
  .sp-only{ display: inline; }
  .elite-message{
    padding: 18px 16px;
    border-radius: 22px;
  }
  .elite-message-lead,
  .elite-message-body{
    font-size: 14.5px;
  }
}