/* ====================
   基本設定
   ==================== */

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

input,
textarea {
  outline: none;
}

body {
  font-family: "Yu Gothic", "Hiragino Sans", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
}

.pc {
  display: none;
}

.pc-max {
  display: none;
}

.sp {
  display: inline;
}

.pc2 {
  display: none;
}

/* PC版コンテナ（768px〜）- 768px固定 */
@media (min-width: 768px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
  .pc-max {
    display: none;
  }
  .pc2 {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .pc2 {
    display: none;
  }
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
  .pc-max {
    display: inline;
  }
}

/* ====================
   コンテナ設定
   ==================== */

/* スマホ版コンテナ（〜768px）*/
.container {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 0 16px;
}

/* PC版コンテナ（768px〜）- 768px固定 */
@media (min-width: 768px) {
  .container {
    width: 100vw;
    max-width: 1200px;
    padding: 0 5vw;
  }
}

/* ====================
   背景画像とパターンの共通スタイル
   ==================== */

/* メイン背景画像 */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* 装飾パターン画像 */
.bg-pattern {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2;
  border-radius: 16px;
}

/* 各セクション別の背景画像設定 */

.company-bg {
  opacity: 0.15;
  filter: grayscale(30%);
}

.ai-bg {
  /* opacity: 0.25; */
  filter: hue-rotate(30deg);
}

.curriculum-bg {
  opacity: 0.1;
  filter: grayscale(50%);
}

.third-ai-bg {
  opacity: 0.3;
  filter: hue-rotate(60deg);
}

.pattern-5 {
  width: 200px;
  height: 140px;
  top: 40px;
  right: 40px;
}

.pattern-6 {
  width: 160px;
  height: 120px;
  bottom: 50px;
  left: 50px;
}

.pattern-7 {
  width: 220px;
  height: 150px;
  top: 60px;
  right: 20px;
}

.pattern-8 {
  width: 140px;
  height: 100px;
  top: 30px;
  left: 30px;
}

/* ====================
   ヘッダーセクション（青い背景）
   ==================== */

.hero {
  color: white;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* 助成金バナー */
.subsidy-banner {
  background: linear-gradient(135deg, rgba(44, 204, 228), rgba(83, 77, 236));
  border-radius: 16px;
  padding: 10px 6px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(49, 94, 235, 0.3);
}

/* PC版コンテナ（768px〜）- 768px固定 */
@media (min-width: 768px) {
  .subsidy-banner {
    justify-content: center;
    align-items: baseline;
    margin-bottom: 8px;
  }
}

@media (min-width: 1024px) {
  .subsidy-banner {
    justify-content: center;
    align-items: baseline;
    display: flex;
  }
}

.subsidy-text {
  font-size: 18px;
  font-weight: 600;
}

.subsidy-highlight {
  font-size: 26px;
  font-weight: 600;
  color: #fff200;
  margin-top: -4px;
}

.big-number {
  font-size: 40px;
}

/* PC版でのバナーサイズ調整 */
@media (min-width: 768px) {
  .subsidy-text {
    font-size: 26px;
    margin-bottom: 0;
  }

  .subsidy-highlight {
    font-size: 30px;
  }

  .big-number {
    font-size: 42px;
  }
}

/* メインコンテンツエリア */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

/* PC版では横並び */
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 1vw;
  }
}

/* 左側のコンテンツ */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

/* PC版では左寄せ */
@media (min-width: 768px) {
  .hero-left {
    align-items: flex-start;
    text-align: left;
    gap: 1vw;
    margin-top: 32px;
  }
}

/* 右側のフォーム */

.error-msg {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 6px;
}
.hero-right {
  width: 100%;
  max-width: 350px;
}

/* PC版での右側の幅 - 768px幅に最適化 */
@media (min-width: 768px) {
  .hero-right {
    flex-shrink: 0;
    width: 40vw;
    max-width: 400px;
    margin-right: -10px;
  }
}

/* 緑のバッジ - 平行四辺形 */
.info-badge {
  background: linear-gradient(
    135deg,
    rgba(44, 204, 228, 0.3),
    rgba(83, 77, 236, 0.3)
  );
  transform: skew(-15deg);
  padding: 4px 24px;
  text-align: left;
  width: 100%;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}

/* PC版でのバッジサイズ */
@media (min-width: 768px) {
  .info-badge {
    padding: 1vw 1vw;
    max-width: 600px;
    /* max-width: 30vw; */
  }
}

/* 平行四辺形内のテキストを正常に表示 */
.info-badge p {
  font-size: 14px;
  font-weight: 400;
  transform: skew(15deg);
  margin: 0;
}

/* PC版でのテキストサイズ */
@media (min-width: 768px) {
  .info-badge p {
    font-size: MIN(1.6vw, 20px);
  }
}

/* メインタイトル */
.main-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  text-align: justify;
  letter-spacing: 2px;
}

.main-title p {
  font-size: 30px;
  padding: 4px 0px;
  width: 150px;
  text-shadow: none;
  text-align: center;
  background: linear-gradient(135deg, #2ccce4, #534dec);
}

/* PC版でのタイトルサイズと配置 */
@media (min-width: 768px) {
  .main-title {
    font-size: MIN(4.8vw, 60px);
    text-align: left;
  }

  .main-title p {
    font-size: MIN(4vw, 56px);
    width: MIN(21vw,300px);
    padding: 4px 0px;
  }
}

/* 実績の3つの丸 */
.achievement-circles {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* PC版での円の配置 */
@media (min-width: 768px) {
  .achievement-circles {
    justify-content: flex-start;
    gap: 1vw;
  }
}

.circle {
  width: 110px;
  height: 110px;
  border: 0.6px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* PC版での円のサイズ - 768px幅に最適化 */
@media (min-width: 768px) {
  .circle {
    width: MIN(14vw, 180px);
    height: MIN(14vw, 180px);
    border: 0.1vw solid white;
  }
}

.circle-content {
  text-align: center;
  padding: 6px;
}

.circle-main {
  font-size: 8px;
  line-height: 1.2;
  padding-bottom: 2px;
}

.circle-main-sub {
  font-size: 17px;
}

@media (min-width: 768px) {
  .circle-main-sub {
    font-size: 19px;
  }
}

@media (min-width: 1024px) {
  .circle-main-sub {
    font-size: 24px;
  }
}

.circle-sub {
  font-size: 14px;
  font-weight: bold;
  margin: 1px 0;
  line-height: 1.0;
}

.sub-text {
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 3px;
}

.under-line {
  background: linear-gradient(
    transparent 50%,
    rgba(44, 204, 228, 0.3) 24.83%,
    rgba(83, 77, 236, 0.3) 303.99% 60%
  );
}

/* PC版での円内テキストサイズ */
@media (min-width: 768px) {
  .circle-main {
    font-size: MIN(1.1vw, 15px);
    margin-bottom: 0.1vw;
  }

  .circle-sub {
    font-size: MIN(1.6vw, 24px);
    margin: 2px 0;
  }

  .sub-text {
    font-size: MIN(1.2vw, 16px);
    margin: 1px 0;
  }

}

/* お問い合わせフォーム */
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  margin-top: 12px;
}

.form-item {
  text-align: left;
  color: black;
  font-weight: 200;
  font-size: 14px;
  margin-top: -6px 0 0 0;
}

.form-item span {
  color: red;
}

.checkbox-text span {
  color: red;
}

/* PC版でのフォーム調整 */
@media (min-width: 768px) {
  .contact-form {
    padding: 20px 20px;
  }
}

.form-title {
  color: #374151;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: -4px;
}

.form-sub-title {
  color: #374151;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .form-sub-title {
    color: #374151;
    text-align: center;
    font-size: MIN(2vw, 20px);
    font-weight: bold;
    margin-top: -4px;
  }
}

.materials {
  width: 100%;
  margin-bottom: 6px;
}

.bottom_materials {
  width: 100%;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .bottom_materials {
  width: 100%;
  padding: 0 MIN(3vw,80px);
  margin-bottom: 6px;
}
}

.form-description {
  color: #374151;
  text-align: center;
  font-size: 14px;
  margin-top: -4px;
  text-align: left;
  margin-left: 2vw;
  padding: 10px 0px;
}

@media (min-width: 768px) {
  .form-description {
    font-size: MIN(1.8vw, 18px);
  }
}

.hero-icon {
  margin-right: 8px;
}

.contact-form input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #2ccce4, #534dec);
  color: white;
  border: none;
  padding: 16px 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
}

.submit-btn2 {
  width: 100%;
  background: linear-gradient(135deg, #2ccce4, #534dec);
  color: white;
  border: none;
  padding: 20px 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .submit-btn {
    margin: 0 auto;
  font-size: MIN(1.8vw,18px);
    padding: 16px 8px;
  }

  .submit-btn2 {
    margin: 0 auto;
    font-size: 30px;
    width: 500px;
  }
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.url {
  font-size: 12px;
  color: #818181;
}

.url-text {
  color: blue;
  text-decoration: underline;
}

/* ====================
   セクション共通スタイル
   ==================== */

.company-intro,
.curriculum,
.program {
  background: #f8fafc;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.ai-explanation,
.target-audience,
.third-ai {
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin-top: -2px;
}

.curriculum-text {
  width: 330px;
  margin: auto;
  display: block;
}

.title-container {
  position: relative;
}

@media (min-width: 768px) {
  .curriculum-text {
    width: 650px;
    margin: auto;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
  }
}

.section-title {
  font-size: 32px;
  margin: 10px 0 16px 0;
  color: white;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 3px;
  font-weight: 500;
  line-height: 135%;
  z-index: 10;
  position: relative;
}

.section-title.text-shadow {
  text-shadow: 0 0 20px #4747eb, 0 0 5px #fff;
}

.black {
  color: black;
  font-weight: 500;
}

/* PC版でのタイトルサイズ */
@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    padding-top: 18px;
  }
}

.section-subtitle {
  font-size: 16px;
  color: white;
  margin-bottom: 40px;
  text-align: center;
}

/* PC版でのサブタイトル */
@media (min-width: 768px) {
  .section-subtitle {
    font-size: 22px;
    margin-bottom: 48px;
  }
}

.marker {
  width: 36px;
  height: 4px;
  background: var(--color-azure-65, #9ca3af);
}

.center {
  margin: 0 auto;
  margin-bottom: 30px;
}

.sub-title {
  font-size: 24px;
  color: black;
  margin: 28px 0 0 0;
  font-weight: bold;
  text-align: left;
  font-weight: 500;
}

.sub-title-text {
  font-size: 16px;
  color: #3b82f6;
  margin: 28px 0 0 0;
  font-weight: bold;
  text-align: center;
  font-weight: 500;
}

.sub-title-text2 {
  font-size: 20px;
  color: white;
  margin: 0 8px;
  font-weight: bold;
  text-align: center;
  font-weight: 500;
}

@media (min-width: 768px) {
  .sub-title-text {
    font-size: 18px;
  }

  .sub-title-text2 {
    font-size: 18px;
    color: white;
    margin: 18px 0 0 0;
    font-weight: bold;
    text-align: center;
    font-weight: 500;
  }
}

.sub-title-text.white {
  color: white;
}

.sub-title.white {
  color: white;
  text-align: center;
}

/* PC版でのサブタイトル */
@media (min-width: 768px) {
  .sub-title {
    font-size: 28px;
    margin: 32px 0;
  }
}

/* ====================
   統計カード
   ==================== */

.stats-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}

/* PC版では横並び - 768px幅に最適化 */
@media (min-width: 768px) {
  .stats-cards {
    flex-direction: row;
    justify-content: center;
    gap: 2vw;
    margin-bottom: 48px;
  }
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 30px 8px 80px 8px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  z-index: 1;
  position: relative;
}

/* PC版での統計カード - 768px幅に最適化 */
@media (min-width: 768px) {
  .stat-card {
    width: 30vw;
    padding: 24px 8px;
    flex-shrink: 0;
    height: 280px;
    max-width: 300px;
  }
}

.big-stat {
  font-size: 58px;
  font-weight: bold;
  background: linear-gradient(90deg, #2ccce4, #534dec 90%);
  margin-bottom: 12px;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.big-stat2 {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(90deg, #2ccce4, #534dec 90%);
  margin-bottom: 12px;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.Annotation {
  font-weight: 100;
  margin-top: -10px;
}

.wavy-line {
  position: absolute;
  top: 40px;
  left: 50px;
}

@media (min-width: 768px) {
  .wavy-line {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    width: 180px;
    margin: 0 auto;
  }
}

.Background-image {
  position: absolute;
  right: 0;
  bottom: 0px;
  left: 0;
  z-index: -2;
}

/* PC版での統計数字 */
@media (min-width: 768px) {
  .big-stat {
    font-size: 64px;
    margin-bottom: 0px;
  }

  .big-stat2 {
    padding: 9px 0;
    margin-bottom: 0px;
    font-size: MIN(4vw, 48px);
  }
}

.stat-unit {
  font-size: 24px;
  color: black;
}

/* PC版での単位 */
@media (min-width: 768px) {
  .stat-unit {
    font-size: 16px;
    margin: 0 1px;
  }
}

.stat-card h3 {
  font-size: 24px;
  color: #374151;
  margin-bottom: 10px;
  font-weight: 500;
}

.stat-card p {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

/* PC版での統計カードテキスト */
@media (min-width: 768px) {
  .stat-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 500;
  }

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

/* ====================
   価値提案
   ==================== */

.value-prop {
  width: 100%;
  background: linear-gradient(135deg, rgba(44, 204, 228), rgba(83, 77, 236));
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.value-text {
  color: white;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
}

.highlight {
  font-size: 24px;
  color: #fff200;
  font-weight: 500;
  margin-bottom: 20px;
}

/* PC版での価値提案 */
@media (min-width: 768px) {
  .value-prop {
    padding: 32px;
  }

  .value-text {
    font-size: 22px;
    font-weight: 700;
  }

  .highlight {
    font-weight: 28px;
  }
}

/* ====================
   AI説明セクション
   ==================== */

.explanation-text {
  width: 100%;
  text-align: center;
  font-weight: 200;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.explanation-text p {
  font-size: 11px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* PC版での説明テキスト */
@media (min-width: 768px) {
  .explanation-text p {
    font-size: 18px;
    margin-bottom: 18px;
  }
}

/* ====================
   対象者カード
   ==================== */
.target-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* PC版で中央寄せ */
  margin-top: 10px;
}

.target-card {
  background: linear-gradient(
    135deg,
    rgba(44, 204, 228, 0.6),
    rgba(83, 77, 236, 0.6)
  );
  border-radius: 12px;
  padding: 10px 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  text-align: center;
  margin: 7px 3px;
  box-sizing: border-box;
  width: 48%;
}

.target-card h3 {
  font-size: 12px;
  font-weight: bold;
}

/* ✅ PC版で3列に切り替え */
@media (min-width: 768px) {
  .target-card {
    width: calc(33.33% - 24px); /* 3列（margin分を調整） */
    padding: 12px;
    min-height: 100px;
    max-width: 300px;
    margin: 12px 10px;
  }

  .target-card h3 {
    font-size: 16px;
    padding-top: 6px;
  }
}

/* ====================
   ツールカード
   ==================== */

.tool-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

.tool-card {
  position: relative;
  background: #f0f9ff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.flex-center {
  display: flex;
  margin-bottom: 12px;
  align-items: flex-start;
  justify-content: center;
}

.flex-left {
  margin-bottom: 12px;
  align-items: flex-start;
  display: flex;
}

.flex-left-pc {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .flex-left {
    display: flex;
    margin-bottom: 12px;
  }

  .flex-left-pc {
    display: flex;
  }
}

.vector {
  width: 300px;
  margin: auto;
  display: block;
  padding-bottom: 20px;
}

.vector1 {
  max-width: 300px;
  margin: 0 auto;
  display: block;
  padding: 10px 0;
}

.line {
  background: var(
    --gradation_blue2,
    linear-gradient(88deg, #2ccce4 0%, #534dec 101.45%)
  );
  width: 500px;
  height: 8px;
  flex-shrink: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 140px;
  position: absolute;
  z-index: -1;
}

.tool-card-icon {
  margin-right: 10px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .tool-card-icon {
    height: 40px;
  }
}

.tool-card h4 {
  font-size: 20px;
  color: #374151;
  font-weight: 700;
}

.tool-card p {
  font-size: 13px;
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* PC版でのツールカード */
@media (min-width: 768px) {
  .tool-cards {
    gap: 24px;
  }

  .tool-card {
    padding: 24px;
  }

  .tool-card h4 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .tool-card p {
    font-size: 18px;
    margin-bottom: 10px;
    z-index: -2;
  }
}

.Background-icon {
  position: absolute;
  bottom: 0px;
  z-index: -1;
}

@media (min-width: 768px) {
  .Background-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
}

.Background-icon2 {
  position: absolute;
  top: 664px;
  z-index: -1;
}

@media (min-width: 768px) {
  .Background-icon2 {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: -1;
  }
}

.Background-icon3 {
  position: absolute;
  top: 904px;
  z-index: -1;
}

.Background-icon4 {
  position: absolute;
  top: 1142px;
  z-index: -1;
}

.Background-icon5 {
  position: absolute;
  top: 1414px;
  z-index: -1;
}
/* ====================
   目的カード
   ==================== */

.purpose-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  margin: 28px 0;
}

/* PC版では2列 */
@media (min-width: 768px) {
  .purpose-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 16px 0;
  }
}

.purpose-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  font-weight: bold;
}

.purpose-card-text {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  padding-top: 12px;
  color: #374151;
}

.program-icon {
  height: 60px;
  padding-bottom: 4px;
}

/* PC版での目的カード */
@media (min-width: 768px) {
  .purpose-card {
    padding: 8px;
    min-height: 100px;
    font-size: 14px;
  }
}

/* ====================
   概要ステップ
   ==================== */

.overview-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 28px 0;
}

/* PC版での概要ステップ */
@media (min-width: 768px) {
  .overview-steps {
    gap: 18px;
    margin: 32px 0;
  }
}

.step-header {
  background: linear-gradient(90deg, #2ccce4 0.24%, #534dec 315.43%);
  color: white;
  padding: 6px 16px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  border-radius: 12px 12px 0 0;
}

.step-footer {
  border-radius: 0 12px 12px 12px;
  padding: 16px;
  margin: 0;
  font-size: 13px;
  background: white;
  border: 2px solid #2ccce4;
}

/* PC版でのステップカード */
@media (min-width: 768px) {
  .step-header {
    padding: 12px 20px;
    font-size: 16px;
  }

  .step-card p {
    padding: 20px;
    font-size: 14px;
  }

  .step-footer {
    border-radius: 0 12px 12px 12px;
    padding: 0px;
    margin: 0;
    font-size: 13px;
    background: white;
    border: 2px solid #2ccce4;
  }
}

.sub-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

@media (min-width: 768px) {
  .sub-container {
    width: 90vw;
    max-width: 810px;
    margin: 0 auto;
  }
}

/* ====================
   プロンプト例セクション
   ==================== */

/* CURRICULUM背景テキスト */
.curriculum-bg-title {
  position: relative;
  width: 100%;
  max-width: 342px;
  height: 40px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PC版での調整 */
@media (min-width: 768px) {
  .curriculum-bg-title {
    max-width: 500px;
    height: 60px;
    margin: 0 auto 64px;
  }
}

/* サブタイトルと下線 */
.prompt-subtitle {
  text-align: center;
}

.underline-svg {
  width: 100%;
  height: 100%;
}

/* PC版でのサブタイトル調整 */
@media (min-width: 768px) {
  .subtitle-underline {
    max-width: 400px;
  }
}

/* プロンプトカード */
.prompt-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* PC版での調整 */
@media (min-width: 768px) {
  .prompt-cards {
    gap: 40px;
  }
}

.prompt-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #d1d5db;
  width: 100%;
}

/* PC版でのカード調整 */
@media (min-width: 768px) {
  .prompt-card {
    padding: 32px;
    border-radius: 16px;
  }
}

.prompt-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-icon {
  font-size: 20px;
}

/* PC版でのタイトル調整 */
@media (min-width: 768px) {
  .prompt-card-title {
    font-size: 28px;
    margin-bottom: 20px;
    gap: 12px;
  }

  .card-icon {
    font-size: 24px;
  }
}

/* プロンプト例 */
.prompt-example {
  margin-bottom: 16px;
}

.prompt-label {
  font-size: 16px;
  font-weight: bold;
  color: #6b7280;
  margin-bottom: 8px;
}

.prompt-code {
  background: #eff6ff;
  border-radius: 8px;
  padding: 16px;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  font-size: 14px;
  color: #1d4ed8;
  line-height: 1.5;
}

.prompt-code pre {
  background: #eff6ff;
  border-radius: 8px;
  padding: 14px;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  font-size: 14px;
  color: #1d4ed8;
  line-height: 1.5;
}

/* PC版でのプロンプト調整 */
@media (min-width: 768px) {
  .prompt-example {
    margin-bottom: 20px;
  }

  .prompt-label {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .prompt-code {
    padding: 20px;
    font-size: 16px;
  }
}

/* アウトプット例 */
.output-example {
  margin-bottom: 16px;
}

.output-label {
  font-size: 16px;
  font-weight: bold;
  color: #6b7280;
  margin-bottom: 8px;
}

.output-code {
  background: #fefce8;
  border-radius: 8px;
  padding: 16px;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  font-size: 14px;
  color: #059669;
  line-height: 1.4;
  border-left: 4px solid #10b981;
}

.output-code pre {
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
}

/* PC版でのアウトプット調整 */
@media (min-width: 768px) {
  .output-example {
    margin-bottom: 20px;
  }

  .output-label {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .output-code {
    padding: 20px;
    font-size: 14px;
  }

  .output-code pre {
    font-size: 16px;
  }
}

/* 解説 */
.explanation {
  margin-top: 16px;
}

.explanation p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
  font-weight: 200;
}

/* PC版での解説調整 */
@media (min-width: 768px) {
  .explanation {
    margin-top: 20px;
  }

  .explanation p {
    font-size: 18px;
  }
}

/* ====================
   カリキュラム詳細
   ==================== */

.curriculum-detail {
  background: #e9e4fa;
  border-radius: 12px;
  padding: 28px 16px;
  margin: 40px 0;
  width: 100%;
  z-index: 1;
  position: relative;
}

/* PC版でのカリキュラム詳細 */
@media (min-width: 768px) {
  .curriculum-detail {
    padding: 36px 20px;
    margin: 0;
  }
}

.detail-title {
  color: white;
  font-size: 16px;
  z-index: -1;
  text-align: center;
}

.Background8 {
  position: absolute;
  z-index: -2;
  top: 26px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 76%;
}

.Background9 {
  position: absolute;
  z-index: -2;
  top: -4px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
}

/* PC版での詳細タイトル */
@media (min-width: 768px) {
  .detail-title {
    padding: 16px;
    font-size: 18px;
    width: 400px;
    margin: 0 auto;
  }

  .Background8 {
    position: absolute;
    z-index: -2;
    top: 46px;
    right: 0;
    left: 17%;
    margin: 0 auto;
  }
}

.curriculum-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

/* PC版では横並び - 768px幅に最適化 */
@media (min-width: 768px) {
  .curriculum-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
  }
}

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

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto 12px;
}

/* PC版でのステップ番号 */
@media (min-width: 768px) {
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin: 0 auto 16px;
  }
}

.curriculum-step:nth-child(1) .step-number {
  background: #2ccce4;
}

.curriculum-step:nth-child(2) .step-number {
  background: #3e94e8;
}

.curriculum-step:nth-child(3) .step-number {
  background: #5055eb;
}

.curriculum-step h4 {
  color: #374151;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
}

/* PC版でのステップタイトル */
@media (min-width: 768px) {
  .curriculum-step h4 {
    margin-bottom: 16px;
    font-size: 18px;
  }
}

.step-content {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  margin: 0 30px;
}

.step-content p {
  color: #374151;
  font-size: 14px;
  margin-top: -2px;
}

.step-content-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

/* PC版でのステップコンテンツ */
@media (min-width: 768px) {
  .step-content {
    padding: 16px 18px;
    margin: 0 10px;
    height: 53vw;
    max-height: 386px;
  }

  @media (min-width: 850px) {
    .step-content {
      height: 44vw;
      max-height: 380px;
    }
  }

  .step-content p {
    font-size: 14px;
    margin-top: -4px;
    font-weight: 300;
  }

  .step-content strong {
    font-size: 16px;
  }
}

/* ====================
   カリキュラムのポイント
   ==================== */

.curriculum-points {
  margin: 48px 0;
}

.points-title {
  font-size: 24px;
  font-weight: bold;
  color: #1f2937;
  text-align: left;
  margin-bottom: 32px;
  position: relative;
  letter-spacing: 1.2;
  background: linear-gradient(90deg, #2ccce4, #534dec);
  background: -webkit-linear-gradient(90deg, #2ccce4, #534dec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PC版でのタイトル調整 */
@media (min-width: 768px) {
  .points-title {
    font-size: 28px;
    margin-bottom: 16px;
    z-index: 100;
  }
}

.points-container {
  background: #f2f2f2;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 0 10px rgba(77, 77, 77, 0.1);
  position: relative;
  margin-top: -40px;
}

/* PC版でのコンテナ調整 */
@media (min-width: 768px) {
  .points-container {
    padding: 40px 16px 20px 16px;
    border-radius: 16px;
    max-width: 1000px;
  }
}

.point-card {
  background: white;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  width: fit-content;
}

.point-card:last-child {
  margin-bottom: 0;
}

/* PC版でのポイントカード調整 */
@media (min-width: 768px) {
  .point-card {
    padding: 10px 8px;
    margin-bottom: 20px;
    margin: 0 10px 0 0;
    gap: 6px;
  }
}

.point-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* PC版でのアイコン調整 */
@media (min-width: 768px) {
  .point-icon {
    font-size: 18px;
  }
}

.point-text {
  flex: 1;
}

.point-text p {
  font-size: 16px;
  color: #374151;
  line-height: 1.35;
  margin: 0;
  font-weight: 300;
}

/* PC版でのテキスト調整 */
@media (min-width: 768px) {
  .point-text p {
    font-size: 13px;
  }
}

/* スマホ版での調整 */
@media (max-width: 767px) {
  .curriculum-points {
    margin: 40px 0;
  }

  .points-title {
    font-size: 24px;
    margin-bottom: 24px;
    z-index: 1;
    font-weight: 600;
  }

  .points-container {
    padding: 36px 16px;
  }

  .point-card {
    padding: 10px 12px;
    margin-bottom: 12px;
    gap: 8px;
  }

  .point-icon {
    font-size: 14px;
  }

  .point-text p {
    font-size: 14px;
  }
}

/* ====================
   Third AIセクション
   ==================== */

.third-ai {
  background: radial-gradient(circle, #4f46e5 0%, #3730a3 100%);
}

.yellow {
  color: #fff878;
  font-weight: 500;
  margin-bottom: -30px;
}

.symbol {
  font-size: 12px;
  position: relative;
  top: -16px;
  right: 0;
}

@media (min-width: 768px) {
  .symbol {
    font-size: 16px;
    top: -18px;
    right: 0;
  }
}

.third-ai-content {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 28px 30px;
  color: #374151;
  width: 100%;
  margin: 0 0 28px 0;
}

/* PC版でのThird AIコンテンツ */
@media (min-width: 768px) {
  .third-ai-content {
    padding: 36px 20px;
    margin: 32px 0;
  }
}

.third-ai-desc {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 28px;
  text-align: center;
}

/* PC版での説明 */
@media (min-width: 768px) {
  .third-ai-desc {
    font-size: 18px;
    margin-bottom: 32px;
    margin: 0 16px 20px 16px;
  }
}

.third-ai-content h4 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

/* PC版でのh4 */
@media (min-width: 768px) {
  .third-ai-content h4 {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.feature-cards {
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .feature-cards {
    display: flex;
  }
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}

.feature-card-icon {
  margin-right: 10px;
}

.feature-card h5 {
  font-size: 16px;
  font-weight: bold;
  color: #374151;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 8px;
}

/* PC版での機能カード */
@media (min-width: 768px) {
  .feature-card {
    padding: 18px;
    width: 24vw;
    max-width: 290px;
    margin: 8px;
  }

  .feature-card h5 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 12px;
  }
}

/* ====================
   最終CTA・フッター
   ==================== */

.final-cta {
  background: linear-gradient(
    135deg,
    rgba(44, 204, 228, 0.5),
    rgba(83, 77, 236, 0.5)
  );
  color: white;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* PC版でのCTA */
@media (min-width: 768px) {
  .final-cta {
    padding: 60px 0;
  }
}

.final-cta h2 {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: center;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.final-cta p {
  font-size: 16px;
  margin-bottom: 28px;
  text-align: center;
}

.final-form-title {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: center;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  color: white;
}

.final-form-name {
  font-size: 16px;
  margin-bottom: 28px;
  text-align: center;
  color: white;
}

/* PC版でのCTAテキスト */
@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .final-cta p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .final-form-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .final-form-name {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.final-form {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  color: black;
}

.form-icom {
  margin-right: 4px;
}
.form-icom2 {
  margin-right: 4px;
}

/* PC版でのフォーム */
@media (min-width: 768px) {
  .final-form {
    width: 60vw;
    max-width: 800px;
    padding: 28px;
  }

  .form-icom2 {
    width: 40px;
    margin-right: 10px;
  }
}

.input-text {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background-color: white;
  color: black;
  text-align: left;
}

.input-text2 {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  height: 100px;
}

.final-form button {
  width: 100%;
  background: linear-gradient(135deg, #2ccce4, #534dec);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  margin: 0;
}

.consent-text {
  font-size: 12px;
  color: black;
  text-align: left;
}

.checkbox-text {
  font-size: 12px;
  display: flex;
  align-items: center;
  margin: 8px 0;
  color: #333;
}

.checkbox {
  margin-right: 2px;
}

.footer {
  background: #374151;
  color: white;
  padding: 28px 0 60px 0;
  text-align: center;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.footer p {
  color: #9ca3af;
  margin-bottom: 4px;
  font-size: 13px;
}

.copyright {
  font-size: 11px;
}

.cta-icon {
  width: 18px;
  margin-right: 5px;
}

/* PC版でのフッター */
@media (min-width: 768px) {
  .footer {
    padding: 32px 0;
  }

  .footer h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .footer p {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .copyright {
    font-size: 12px;
  }
}

.cta-space {
  margin: 60px;
  background: #374151;
}

/* ====================
   フローティングCTA
   ==================== */

.flex-cta {
  display: flex;
  justify-content: center;
}

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  background: white;
  z-index: 100;
  display: none;
  width: 100%;
}

.floating-cta-pc {
  background: url(./img/PC/floatingCTA.svg);
  position: fixed;
  bottom: 0;
  left: none;
  right: 10px;
  background: none;
  z-index: 100;
  text-align: right;
  display: none;
}

.cta-btn1 {
  width: 100%;
  background: linear-gradient(135deg, #2ccce4, #534dec);
  color: white;
  border: none;
  padding: 16px 8px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
  letter-spacing: 1px;
  margin: 10px 8px 10px 16px;
}

.cta-btn2 {
  width: 100%;
  background: linear-gradient(135deg, #fff600, #ff8400);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
  letter-spacing: 2px;
  margin: 10px 20px 10px 10px;
}

/* ====================
   各sectionの背景画像設定
   ==================== */

/* ヒーローセクション背景 */

/* 企業紹介セクション背景 */
.company-intro {
  background-image: url("./img/Section.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* AI説明セクション背景 */

/* 対象者セクション背景 */
.target-audience {
  background-image: url("./img/Background3.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.target-audience-icon {
  height: 30px;
  padding-bottom: 6px;
}

.consultation-title {
  text-align: center;
  font-size: 38px;
  letter-spacing: 2px;
  font-weight: 500;
  line-height: 50px;
}

.consultation-caption {
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .consultation-caption {
    font-size: 18px;
  }
}

/* FV背景 */

.hero {
  background-image: url("./img/Background.png");
  background-size: cover;
  background-position: top;
  color: white;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    background-image: url("./img/PC/Background.png");
    object-fit: cover;
  }
}

/* AI活用説明セクション（青い背景 */
.ai-explanation {
  background-image: url("./img/Background2.png");
  background-size: cover;
  background-position: top;
  color: white;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ai-explanation {
    margin-top: -8px;
    background-image: url("./img/PC/Background2.png");
  }
}

/* カリキュラムセクション背景 */
.curriculum {
  background-image: url("./img/Background5.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .curriculum {
    background-image: url("./img/PC/Background5.png");
  }
}

/* プログラムセクション背景 */
.program {
  background-image: url("./img/Background5.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Third AIセクション背景 */
.third-ai {
  background-image: url("./img/Background7.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .third-ai {
    background-image: url("./img/PC/Background7.png");
  }
}

/* 最終CTAセクション背景 */
.final-cta {
  background-image: url("./img/Section2.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.consultation {
  background-image: url("./img/Background4.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin-top: -2px;
}

.consultation2 {
  background-image: url("./img/Background3.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* プロンプト例セクション背景 */
.prompt-examples {
  background-image: url("./img/Background6.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  position: relative;
}

@media (min-width: 768px) {
  .prompt-examples {
    background-image: url("./img/PC/Background6.png");
    padding: 60;
  }
}
