/* ===============================================
 * CSS変数
 * ============================================= */
:root {
  --color-red: #FC7464;
  --color-green: #5FC279;
  --color-orange: #FC7464;
  --bg-color-light-cream: #FFFDF1;
  --bg-color-dark-cream: #F7F1DF;
  
  /* スペーシングスケール（8px刻み） */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  
  /* 角丸スケール（8px刻み） */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ===============================================
 * 共通・ベーススタイル
 * ============================================= */
a {
  text-decoration: none;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  font-feature-settings: 'palt' 1;
}

h2 {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: clamp(0.48px, 0.125vw, 0.64px);
}

/* ===============================================
 * ユーティリティクラス
 * ============================================= */
.body-bold {
  font-weight: 700;
}

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

.text-orange {
  color: #f3511a;
}

.text-marker {
  background: linear-gradient(transparent 84%, rgba(252, 205, 100, 0.5) 75%);
  padding: 0 2px;
}

.pc-break {
  display: inline;
}

.bg-light-cream {
  background-color: var(--bg-color-light-cream);
}

.bg-dark-cream {
  background-color: var(--bg-color-dark-cream);
}

/* SP用改行（PCで非表示） */
.sp-break {
  display: inline;
}

@media (min-width: 768px) {
  .sp-break {
    display: none;
  }
}

/* PC用改行 */
@media (min-width: 768px) {
  .pc-break::before {
    content: "\A";
    white-space: pre;
  }
}

/* ===============================================
 * 共通見出し
 * ============================================= */
.c-heading {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: bold;
  text-align: center;
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(32px, 6vw, 48px);
}

.c-heading--dot::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #61C27B;
  border-radius: 50%;
}

.c-heading--dot.c-heading--green::after {
  width: 14px;
  height: 14px;
  background-color: transparent;
  background-image: url('../../img/academy/h2path.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
}

@media (min-width: 768px) {
  .c-heading--dot::after {
    width: 20px;
    height: 20px;
  }

  .c-heading--dot.c-heading--green::after {
    width: 20px;
    height: 20px;
  }
}

/* ===============================================
 * 共通CTAボタン
 * ============================================= */
.c-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.c-cta-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  padding: 8px 60px 12px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 3px 2.5px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s, box-shadow 0.2s;
}

.c-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.c-cta-button--line {
  background: linear-gradient(180deg, #1abf16 0%, #029a00 100%);
  gap: 16px;
}

.c-cta-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-cta-button-subtitle {
  font-size: clamp(13px, 4vw, 16px);
  letter-spacing: 0.48px;
  color: white;
  font-weight: bold;
  text-shadow: 0 3px 2.5px rgba(0, 0, 0, 0.16);
}

.c-cta-button-title {
  font-size: clamp(13px, 5vw, 20px);
  letter-spacing: 0.9px;
  color: white;
  font-weight: bold;
  text-shadow: 0 3px 2.5px rgba(0, 0, 0, 0.16);
  line-height: 1.4;
}

.c-cta-button-icon {
  position: absolute;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-cta-button--line .c-cta-button-icon:first-child {
  position: absolute;
  left: 20px;
  width: 30px;
  height: 29px;
}

.c-cta-button--line .c-cta-button-icon:last-child {
  width: 15px;
  height: 13px;
}

.c-cta-button--line .c-cta-button-icon img {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .c-cta-button {
    width: 530px;
    padding: 16px 48px 16px;
  }
  
  .c-cta-button--line .c-cta-button-icon:first-child {
    width: 40px;
    height: 39px;
  }
}

/* ===============================================
 * FVセクション
 * ============================================= */
.c-fv-new {
  position: relative;
  background: linear-gradient(180deg, #FFFDF0 0%, #FFFFFF 100%);
  overflow: visible;
  background-image: url('../../img/academy/bg-fv-sp.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-fv-pc {
  display: none;
}

.c-fv-new .c-cta-button {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 96%;
}

.c-fv-new-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-fv-new-content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-top: 68px;
}

.c-fv-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.4;
  font-feature-settings: 'palt' 1;
}

.c-fv-subtitle .text-orange {
  color: #EE5F00;
  font-weight: 700;
}

.c-fv-badges {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  flex-wrap: nowrap;
}

.c-fv-badge {
  background: #2D86C8;
  border-radius: 8px;
  padding: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  color: #FFF;
  white-space: nowrap;
  line-height: 1.2;
  font-feature-settings: 'palt' 1;
}

.c-fv-badge:first-child {
  font-size: 0;
}

.c-fv-badge:first-child::before {
  content: 'web';
  font-size: 24px;
  line-height: 1.2;
}

.c-fv-badge:first-child::after {
  content: 'マーケティング';
  font-size: 20px;
  line-height: 1.2;
}

.c-fv-badge:last-of-type {
  font-size: 0;
}

.c-fv-badge:last-of-type::before {
  content: 'AI';
  font-size: 24px;
  line-height: 1.2;
}

.c-fv-badge:last-of-type::after {
  content: 'スキル';
  font-size: 20px;
  line-height: 1.2;
}

.c-fv-badge-connector {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15.5px;
  font-weight: 900;
  color: #2D86C8;
  line-height: 1;
}

.c-fv-badge-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3D3D3D;
  line-height: 1;
}

@media (max-width: 360px) {
  .c-fv-badges {
    gap: 3px;
  }
  
  .c-fv-badge {
    padding: 6px;
    border-radius: 6px;
  }
  
  .c-fv-badge:first-child::before {
    font-size: 20px;
  }

  .c-fv-badge:first-child::after {
    font-size: 17px;
  }

  .c-fv-badge:last-of-type::before {
    font-size: 20px;
  }

  .c-fv-badge:last-of-type::after {
    font-size: 17px;
  }

  .c-fv-badge-connector {
    font-size: 13px;
  }

  .c-fv-badge-text {
    font-size: 15px;
  }
}

@media (max-width: 340px) {
  .c-fv-badge:first-child::before {
    font-size: 18px;
  }

  .c-fv-badge:first-child::after {
    font-size: 15px;
  }

  .c-fv-badge:last-of-type::before {
    font-size: 18px;
  }

  .c-fv-badge:last-of-type::after {
    font-size: 15px;
  }

  .c-fv-badge-connector {
    font-size: 12px;
  }

  .c-fv-badge-text {
    font-size: 14px;
  }
}

.c-fv-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 25px;
  font-weight: 800;
  color: #3D3D3D;
  margin-bottom: 16px;
  line-height: 1;
}

.c-fv-description {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.c-fv-description-line {
  width: 5.77px;
  height: 37px;
  background: #0086CE;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.c-fv-description-text {
  text-align: left;
  flex: 1;
}

.c-fv-description-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin: 0;
  font-feature-settings: 'palt' 1;
}

.c-fv-images {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.c-fv-image-left,
.c-fv-image-right {
  position: relative;
  width: 172px;
  height: auto;
  overflow: visible;
  border-radius: 0;
}

.c-fv-image-left img:first-child,
.c-fv-image-right img:first-child {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.c-fv-bottom-section {
  position: relative;
  margin-top: -80px;
}

.c-fv-points {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}

.c-fv-point {
  flex-shrink: 0;
}

.c-fv-point img {
  width: 100px;
  height: 100px;
  display: block;
}

@media (max-width: 374px) {
  .c-fv-points {
    gap: 4px;
  }
  
  .c-fv-point img {
    width: 90px;
    height: 90px;
  }
}

.c-fv-note {
  font-size: 11px;
  color: #666;
  text-align: left;
  margin-top: 8px;
  margin-bottom: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .c-fv-note {
    margin-top: 12px;
    margin-bottom: 0;
  }
}

/* PC対応 */
@media (min-width: 768px) {
  .c-fv-sp {
    display: none;
  }
  
  .c-fv-pc {
    display: block;
  }
  
  .c-fv-new {
    min-height: 630px;
    background-image: url('../../img/academy/bg-fv-pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .c-fv-new-container {
    max-width: 1366px;
    padding: clamp(40px, 5vw, 64px) clamp(40px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 48px);
    position: relative;
    background-image: none;
    margin: 0 auto;
  }
  
  .c-fv-main-row {
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 4vw, 100px);
    justify-content: center;
  }

  .c-fv-new-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
  }

  .c-fv-subtitle {
    font-size: clamp(16px, 1.8vw, 24px);
    margin-bottom: clamp(16px, 1.8vw, 18px);
    line-height: 1.4;
  }

  .c-fv-badges {
    gap: clamp(6px, 0.8vw, 8px);
    margin-bottom: clamp(18px, 2vw, 24px);
    align-items: center;
  }

  .c-fv-badge {
    padding: clamp(10px, 1.2vw, 16px) clamp(14px, 1.6vw, 23px);
    border-radius: clamp(10px, 1.2vw, 13px);
  }
  
  .c-fv-badge:first-child::before {
    font-size: clamp(24px, 3vw, 48px);
  }

  .c-fv-badge:first-child::after {
    font-size: clamp(20px, 2.5vw, 40px);
  }

  .c-fv-badge:last-of-type::before {
    font-size: clamp(24px, 3vw, 48px);
  }

  .c-fv-badge:last-of-type::after {
    font-size: clamp(20px, 2.5vw, 40px);
  }

  .c-fv-badge-connector {
    font-size: clamp(20px, 2.2vw, 31px);
    font-weight: 900;
  }

  .c-fv-badge-text {
    font-size: clamp(22px, 2.5vw, 36px);
  }

  .c-fv-title {
    font-size: clamp(28px, 3.5vw, 49.5px);
    margin-bottom: clamp(24px, 2.5vw, 32px);
    line-height: 1;
  }

  .c-fv-description {
    gap: clamp(16px, 1.8vw, 20px);
    margin-bottom: clamp(32px, 3.5vw, 48px);
  }

  .c-fv-description-line {
    width: clamp(8px, 1vw, 11.4px);
    height: clamp(50px, 5.5vw, 73px);
    margin-top: 0;
    border-radius: clamp(10px, 1.2vw, 13px);
  }

  .c-fv-description-text p {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
  }
  
  .c-fv-points {
    position: static;
    transform: none;
    justify-content: flex-start;
    gap: clamp(12px, 1.5vw, 24px);
    margin-bottom: 0;
    max-width: none;
    bottom: auto;
    left: auto;
  }

  .c-fv-point img {
    width: clamp(100px, 11vw, 150px);
    height: clamp(100px, 11vw, 150px);
  }
  
  .c-fv-pc .c-cta-button {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: clamp(300px, 80vw, 500px);
  }

  .c-fv-images {
    display: flex;
    gap: 16px;
    flex-shrink: 1;
    align-items: center;
  }

  .c-fv-image-left,
  .c-fv-image-right {
    width: clamp(180px, 20vw, 282px);
    min-width: 180px;
    height: auto;
    border-radius: 0;
    overflow: visible;
    position: relative;
    flex-shrink: 1;
  }
  
  .c-fv-image-left {
    margin-top: clamp(16px, 2vw, 23px);
  }

  .c-fv-image-left img,
  .c-fv-image-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
}

/* ===============================================
 * Worrysセクション
 * ============================================= */
.c-worrys-section {
  padding: 30px 0 0;
  position: relative;
}

.c-worrys-title {
  text-align: center;
  padding: 0 0 40px;
  position: relative;
  background-image: url('../../img/academy/worrys-title-bg.png');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-bottom: 0;
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.c-worrys-title h2 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.48px;
}

.c-worrys-container {
  background: linear-gradient(180deg, #E7F5F9 0%, #F4FAFC 100%);
  padding: 20px;
  width: 100%;
}

.l-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.c-worry-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 345px;
  max-width: 100%;
}

.c-worry-card--reverse {
  flex-direction: row-reverse;
}

.c-worry-card--reverse p {
  flex: 1;
  width: 100%;
}

.c-worry-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .c-worrys-title h2 {
    font-size: 32px;
  }

  .c-worrys-container {
    padding: 64px 0;
  }

  .c-worrys-container .l-container {
    gap: 24px;
    max-width: 900px;
  }

  .c-worry-card {
    width: 100%;
    max-width: 550px;
    padding: 16px 24px;
    gap: 24px;
  }

  .c-worry-card:nth-child(odd) {
    align-self: flex-start;
  }

  .c-worry-card:nth-child(even) {
    align-self: flex-end;
  }

  .c-worry-card p {
    font-size: 18px;
  }

  .c-worry-icon {
    width: 80px;
    height: 80px;
  }
}

/* ===============================================
 * Academy Introセクション
 * ============================================= */
.l-section {
  padding: 40px 0;
}

.c-academy-intro-section {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #FFF5D2 100%);
  overflow: visible;
}

.c-academy-intro-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
  height: 30px;
  background-image: url('../../img/academy/wave.svg');
  background-size: auto 200px;
  background-position: 0 0;
  background-repeat: repeat-x;
  z-index: 0;
  pointer-events: none;
}

.c-academy-intro-arrow {
  width: 68.318px;
  height: 36.522px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-academy-intro-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-academy-intro-text {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.8;
  text-align: center;
  margin: 24px 0;
}

.c-academy-intro-highlight {
  color: #f3511a;
}

.c-academy-intro-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.48px;
  margin: 0;
}

.c-academy-intro-logo {
  display: inline-block;
  height: 1.2em;
  vertical-align: middle;
  margin: 0 0.2em;
}

.c-academy-intro-de {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  position: relative;
  top: 2px;
}

.c-academy-intro-title-wrapper {
  text-align: center;
  margin: 0 0 24px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}

.c-academy-intro-subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.48px;
  position: relative;
  margin-top: 8px;
}

.c-academy-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-academy-card-badge {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: #e6f8eb;
  border-radius: 24px 24px 0 0;
  padding: 16px 24px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  justify-content: center;
  margin: calc(32px * -1) calc(32px * -1) 16px;
}

.c-academy-card-badge-icon {
  height: 28px;
  width: auto;
}

.c-academy-card-badge-text {
  font-size: clamp(13px, 2.2vw, 15px);
  font-weight: 800;
  color: #000000;
  font-family: 'Rounded Mplus 1c', sans-serif;
  letter-spacing: -0.48px;
  line-height: 1.2;
}

.c-academy-card-title {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
}

.c-academy-card-highlight {
  color: #f3511a;
}

.c-academy-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.c-academy-card-content-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 700;
}

.c-academy-card-highlight-orange {
  color: #f3511a;
}

.c-academy-card-image {
  width: 80%;
  height: auto;
  position: relative;
}

.c-academy-card-image img {
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .c-academy-intro-section {
    padding-top: 64px;
  }

  .c-academy-intro-arrow {
    width: 90px;
    height: 48px;
  }

  .c-academy-intro-text {
    font-size: clamp(18px, 2.5vw, 22px);
    margin: 32px 0;
  }

  .c-academy-intro-title-wrapper {
    max-width: 100%;
    margin-bottom: 48px;
  }

  .c-academy-intro-title {
    font-size: clamp(28px, 4vw, 36px);
  }

  .c-academy-intro-de {
    font-size: clamp(20px, 3vw, 28px);
  }

  .c-academy-intro-subtitle {
    font-size: clamp(28px, 4vw, 32px);
    margin-top: 16px;
  }
  
  .c-academy-intro-subtitle br {
    display: none;
  }

  .c-academy-card {
    width: 100%;
    max-width: 80%;
    padding: 40px;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .c-academy-card-badge {
    height: 72px;
    padding: 24px 32px;
    margin: calc(40px * -1) calc(40px * -1) 24px;
    width: calc(100% + 80px);
  }

  .c-academy-card-badge-icon {
    height: 36px;
  }

  .c-academy-card-badge-text {
    font-size: 18px;
  }

  .c-academy-card-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }

  .c-academy-card-content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .c-academy-card-image {
    width: 220px;
    height: auto;
    flex-shrink: 0;
  }
}

/* ===============================================
 * Featuresセクション
 * ============================================= */
.c-features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
}

.c-feature-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-feature-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 35px;
  color: #5FC279;
  line-height: normal;
  position: relative;
  padding-left: 17px;
}

.c-feature-number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 3px;
  background-color: #61C27A;
  border-radius: 1px;
}

.c-feature-card-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

.c-feature-card-content {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.c-feature-card-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #000;
  margin: 0;
}

.c-feature-card-image {
  width: 133px;
  height: 178px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: white;
}

.c-feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* キャリア支援 */
.c-career-support {
  border: 1px solid #60C179;
  border-radius: 24px;
  background-color: white;
}

.c-career-support-header {
  position: relative;
  background-color: #FFF5D4;
  border-bottom: none;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 32px 24px 16px;
  text-align: center;
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-career-support-badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.c-career-support-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.48px;
  color: #1D1D1D;
  margin: 0;
}

.c-career-support-title-highlight {
  color: #19B68C;
}

.c-career-support-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 32px 24px 40px;
}

.c-career-support-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-career-support-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-career-support-text-wrapper {
  flex: 1;
}

.c-career-support-header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.c-career-point-badge {
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  background-color: #61C27A;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px;
  flex-shrink: 0;
}

.c-career-point-label {
  font-size: 12px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.16px;
  line-height: normal;
}

.c-career-point-number {
  font-size: 20px;
  font-weight: normal;
  color: white;
  line-height: 1;
}

.c-career-support-subtitle {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  color: #000;
  text-align: center;
  margin: 0;
}

.c-career-support-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #000;
  margin: 0;
}

.c-career-support-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
}

.c-career-support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .c-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  
  .c-feature-card-content {
    gap: 24px;
  }
  
  .c-feature-card-image {
    width: 200px;
    height: auto;
  }
  
  .c-career-support {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .c-career-support-title br {
    display: none;
  }
  
  .c-career-support-content {
    padding: 40px 64px 64px;
    gap: 64px;
  }
  
  .c-career-support-body {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
  
  .c-career-support-text-wrapper {
    flex: 1;
  }
  
  .c-career-support-header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  
  .c-career-support-subtitle br {
    display: none;
  }
  
  .c-career-support-image {
    max-width: 400px;
    width: 30vw;
    height: 300px;
    flex-shrink: 0;
  }
}

@media (max-width: 980px) {
  .c-features-list {
    display: flex;
    flex-direction: column;
  }
}

/* ===============================================
 * Learning Styleセクション
 * ============================================= */
.c-learning-style-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.c-learning-style-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.48px;
  color: #000;
  text-align: center;
  font-feature-settings: 'palt' 1;
  margin: 0;
}

.c-learning-style-dot {
  width: 14px;
  height: 14px;
  background-color: #69C9F0;
  border-radius: 50%;
}

.c-learning-style-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.c-learning-card {
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
}

.c-learning-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.c-learning-card-badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-learning-badge-icon {
  width: 20px;
  height: 20px;
}

.c-learning-badge-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #60C179;
}

.c-learning-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: #000;
  text-align: center;
  font-feature-settings: 'palt' 1;
  margin: 0;
  width: 100%;
}

.c-learning-card-image {
  width: 200px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-learning-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.c-learning-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  font-feature-settings: 'palt' 1;
  margin: 0;
  width: 100%;
}

.c-learning-style-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  font-feature-settings: 'palt' 1;
  margin: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .c-learning-style-header {
    margin-bottom: 48px;
  }

  .c-learning-style-dot {
    width: 20px;
    height: 20px;
  }

  .c-learning-style-cards {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
  }

  .c-learning-card {
    max-width: 400px;
  }

  .c-learning-card-image {
    width: 240px;
    height: 156px;
  }

  .c-learning-style-note {
    text-align: center;
  }
}

/* ===============================================
 * Comparisonセクション
 * ============================================= */
.c-comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
  position: relative;
}

.c-comparison-table {
  border-collapse: separate;
  border-spacing: 4px;
  min-width: max-content;
  margin: 0 auto;
  position: relative;
}

.c-comparison-table thead th {
  vertical-align: middle;
  text-align: center;
  padding: 16px;
}

.c-comparison-cell--empty {
  height: 100px;
  width: 120px;
}

.c-comparison-cell--title {
  height: 48px;
  width: 182px;
  padding: 32px 8px;
  vertical-align: middle;
  position: relative;
}

.c-comparison-cell--academy {
  background-color: #D9EFD5;
}

.c-comparison-cell--competitor {
  background-color: #757170;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
}

.c-comparison-table tbody th,
.c-comparison-table tbody td {
  vertical-align: middle;
  text-align: center;
  padding: 16px;
}

.c-comparison-cell--label {
  height: 100px;
  width: 120px;
  background-color: #E8E8E8;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 13.792px;
  color: #000;
}

.c-comparison-cell--content {
  height: 100px;
  width: 182px;
  padding: 32px 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #000;
  background-color: #FAF8F6;
}

.c-comparison-cell--academy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: calc(-100px * 4 - 4px * 16);
  border: 3px solid #62C27B;
  pointer-events: none;
  z-index: 1;
}

.c-comparison-cell--highlight {
  background-color: #F5FAF4;
}

.c-comparison-cell--content p {
  margin: 0;
}

.c-comparison-cell--highlight p {
  font-weight: 700;
  font-size: 16px;
}

.c-comparison-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.c-comparison-logo img {
  width: 80%;
  height: auto;
}

@media (min-width: 768px) {
  .c-comparison-table-wrapper {
    overflow-x: visible;
  }
}

@media (min-width: 600px) and (max-width: 1300px) {
  .c-comparison-table-wrapper {
    overflow-x: auto;
  }
}

/* ===============================================
 * Priceセクション
 * ============================================= */
.c-price-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.c-price-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
}

.c-price-normal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
}

.c-price-label {
  font-size: 21px;
  font-weight: bold;
  color: #111827;
  margin: 0;
}

.c-price-tag {
  background-color: #41B05E;
  border: 0.791px solid #7EC68D;
  color: white;
  padding: 1.582px 8px;
  border-radius: 8px;
  font-size: 18.823px;
  line-height: 1.48;
}

.c-price-amount {
  font-size: 27px;
  font-weight: bold;
  color: #111827;
}

.c-price-unit {
  font-size: 23px;
}

.c-price-tax {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

.c-price-arrow {
  width: 68.318px;
  height: 36.522px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-price-arrow img {
  width: 100%;
  height: auto;
}

.c-price-subsidy-card {
  position: relative;
  width: 100%;
}

.c-price-subsidy-badges-wrapper {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  width: 80%;
  border-radius: 12px;
  background-color: #EA4E46;
}

.c-price-subsidy-badge {
  background-color: #EA4E46;
  color: white;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}

.c-price-subsidy-badge--primary {
  font-size: 16px;
}

.c-price-subsidy-badge--secondary {
  font-size: 16px;
}

.c-price-subsidy-separator {
  font-size: 12px;
  font-weight: 700;
  color: #EA4E46;
  background-color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EA4E46;
  flex-shrink: 0;
}

.c-price-subsidy-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  text-align: center;
}

.c-price-subsidy-item--primary {
  font-size: 18px;
}

.c-price-subsidy-item--secondary {
  font-size: 14px;
}

.c-price-subsidy-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: white;
  color: #EA4E46;
  border: 2px solid #EA4E46;
  border-radius: 50%;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}

.c-price-subsidy-percent {
  font-size: 24px;
}

.c-price-subsidy-badge--secondary .c-price-subsidy-percent {
  font-size: 24px;
}

.c-price-subsidy-note {
  font-size: 14px;
  margin-left: 2px;
}

.c-price-subsidy-content {
  background-color: white;
  border: 1px solid #F7F1DF;
  border-radius: 8px;
  padding: 160px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.c-price-cashback {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  width: 100%;
}

.c-price-cashback-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.c-price-cashback-amount {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
  line-height: 100%;
}

.c-price-cashback-unit {
  font-size: 20px;
}

.c-price-cashback-text {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
  position: relative;
  top: 2px;
}

.c-price-actual {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #EA4E46;
  padding: 0 3px 3px;
  z-index: 1;
}

.c-price-actual::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #FCCD64;
  opacity: 0.54;
  z-index: -1;
}

.c-price-actual-label {
  position: relative;
  font-size: 26.157px;
  font-weight: bold;
  color: #EA4E46;
  padding: 0 3px 3px;
  display: inline-block;
}

.c-price-actual-label::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 13px;
  background-color: #FCCD64;
  opacity: 0.54;
}

.c-price-actual-amount {
  font-size: 32px;
  font-weight: bold;
  color: #EA4E46;
  line-height: 100%;
}

.c-price-actual-zero {
  font-size: 48px;
  font-weight: 700;
  position: relative;
  top: 3px;
}

@media (min-width: 768px) {
  .c-price-actual-zero {
    font-size: 68px;
    top: 4px;
  }
}

.c-price-cashback-notes {
  margin-top: 16px;
  text-align: left;
  width: 100%;
}

.c-price-cashback-notes p {
  font-size: 11px;
  line-height: 1.6;
  color: #666;
  margin: 4px 0;
}

@media (min-width: 768px) {
  .c-price-cashback-notes {
    text-align: center;
  }
}

.c-price-logo {
  width: 100%;
  max-width: 241.697px;
}

.c-price-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.c-price-reskilling-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.c-price-description {
  border: 1px solid #ACAAA2;
  padding: 8px;
  width: 100%;
}

.c-price-description p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #ACAAA2;
  margin: 0;
}

.c-price-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-price-info-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-price-info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  width: fit-content;
}

.c-price-info-badge--blue {
  background-color: #83BEE2;
}

.c-price-info-badge--green {
  background-color: #5FC279;
}

.c-price-info-content {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #111827;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-price-info-content li {
  margin: 0;
}

.c-price-info-content li::before {
  content: "・";
  margin-right: 0;
}

@media (min-width: 768px) {
  .c-price-subsidy-card {
    max-width: 80%;
  }
  
  .c-price-subsidy-badges-wrapper {
    flex-direction: row;
    gap: 12px;
    top: -30px;
    padding: 16px 20px;
  }
  
  .c-price-subsidy-badge {
    width: auto;
    padding: 12px 24px;
  }
  
  .c-price-subsidy-badge--primary {
    font-size: 20px;
  }
  
  .c-price-subsidy-badge--secondary {
    font-size: 18px;
  }
  
  .c-price-subsidy-badge--secondary br {
    display: none;
  }
  
  .c-price-subsidy-separator {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .c-price-subsidy-content {
    padding: 120px 24px 24px;
  }
  
  .c-price-cashback-top {
    flex-direction: row;
    gap: 0;
  }
  
  .c-price-reskilling-description {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
  
  .c-price-info {
    flex-direction: row;
    gap: 32px;
    width: 80%;
  }
  
  .c-price-info-item {
    flex: 1;
  }
}

/* ===============================================
 * Flowセクション
 * ============================================= */
.c-flow-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.c-flow-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-flow-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-flow-item-header {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.c-flow-step {
  display: flex;
  justify-content: flex-start;
  flex-shrink: 0;
}

.c-flow-step-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 3px dotted #5FC279;
  border-radius: 50%;
  background-color: #fff;
}

.c-flow-step-label {
  font-size: 12px;
  font-weight: 400;
  color: #5FC279;
  line-height: 1;
  margin-bottom: 4px;
}

.c-flow-step-number {
  font-size: 20px;
  font-weight: 700;
  color: #5FC279;
  line-height: 1;
}

.c-flow-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  flex: 1;
}

.c-flow-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-flow-image {
  margin: 0;
}

.c-flow-image img {
  width: 100%;
  height: auto;
  display: block;
}

.c-flow-description {
  color: #333;
  padding: 16px;
  flex: 1;
}

.c-flow-description p {
  margin: 0;
}

@media (min-width: 768px) {
  .c-flow-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .c-flow-item {
    flex: 0 0 calc((100% - 32px) / 2);
  }

  .c-flow-step-badge {
    width: 56px;
    height: 56px;
    border-width: 3px;
  }

  .c-flow-step-label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .c-flow-step-number {
    font-size: 24px;
  }

  .c-flow-title {
    font-size: clamp(16px, 1.8vw, 18px);
    flex: initial;
  }
}
