@charset "UTF-8";

/**
 * 変数定義
 * - カラーパレット
 * - レイアウトサイズ
 * - フォント設定
 * - アニメーション設定
 * - ブレイクポイント
 */
/**
 * リセット & ベーススタイル
 * 全体の基本設定
 */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "corporate-logo-ver2", "M PLUS Rounded 1c", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1E3044;
  background-color: #fff;
}

/**
 * ヘッダースタイル
 * - 固定ヘッダー（sticky）
 * - ロゴ・ナビゲーション・CTAボタン
 */
.header {
  position: sticky;
  top: 0;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 900;
}

.header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.header__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #29ABE2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 500px;
}

@media (max-width: 1024px) {
  .header__title {
    font-size: 14px;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .header__title {
    font-size: 18px;
    max-width: 200px;
  }
}

.header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.header__nav-link {
  text-decoration: none;
  color: #5a6b7d;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  color: #29ABE2;
}

.header__cta .cta-button {
  padding: 10px 25px;
  font-size: 14px;
}

/**
 * ハンバーガーメニュースタイル
 * - モバイル用メニューボタン
 * - 3本線から×マークへのアニメーション
 */
.hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1E3044;
  transition: all 0.3s ease;
}

.hamburger__line:nth-child(1) {
  top: 6px;
}

.hamburger__line:nth-child(2) {
  top: 14px;
}

.hamburger__line:nth-child(3) {
  top: 22px;
}

.hamburger--active .hamburger__line:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg);
}

/**
 * モバイルメニュースタイル
 * - 画面右側からスライドイン
 * - フルハイトメニュー
 */
.mobile-menu {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 300px;
  height: calc(100vh - 80px);
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu--active {
  right: 0;
}

.mobile-menu__list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.mobile-menu__item {
  border-bottom: 1px solid white;
}

.mobile-menu__link {
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  color: #5a6b7d;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu__link:hover {
  background-color: #E7F8FF;
  color: #29ABE2;
}

.mobile-menu__cta {
  padding: 20px 30px;
  border-top: 1px solid white;
}

.mobile-menu__cta .cta-button {
  width: 100%;
}

/**
 * コンテナレイアウト
 * - 全体のレイアウトコンテナ
 * - 中央揃えで最大幅1600px
 */
.container {
  position: relative;
  display: flex;
  min-height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/**
 * サイドバースタイル
 * - 左右の固定サイドバー
 * - 装飾的な背景画像を複数配置
 * - スクロールバーを非表示
 */
.sidebar {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 350px;
  overflow: hidden;
  z-index: 100;
  background: #fff;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar:before {
  content: "";
  position: absolute;
  top: 10%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, rgba(41, 171, 226, 0.15) 0%, rgba(41, 171, 226, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.sidebar:after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: -5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at center, rgba(255, 249, 86, 0.1) 0%, rgba(255, 249, 86, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.sidebar.sidebar-left {
  left: max(0px, (100vw - 1600px) / 2);
}

.sidebar.sidebar-right {
  right: max(0px, (100vw - 1600px) / 2);
  left: auto;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar-header {
  padding: 40px 30px 10px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sidebar-header__title {
  font-size: 28px;
  font-weight: 700;
  color: #1E3044;
  margin: 0 0 10px;
  line-height: 1.3;
}

.sidebar-header__subtitle {
  font-size: 14px;
  color: rgba(30, 48, 68, 0.7);
  margin: 0 0 15px;
  line-height: 1.5;
}

.sidebar-header__company {
  font-size: 12px;
  color: rgba(30, 48, 68, 0.5);
  margin: 0;
  font-weight: 500;
}

.sidebar-header__company:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: rgba(30, 48, 68, 0.2);
  vertical-align: middle;
  margin-right: 10px;
}

.sidebar-header__company:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: rgba(30, 48, 68, 0.2);
  vertical-align: middle;
  margin-left: 10px;
}

.nav-menu {
  padding: 30px 20px 20px;
  position: relative;
  z-index: 1;
}

.nav-menu .nav-menu-title {
  margin: 0 0 40px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(30, 48, 68, 0.6);
  text-align: center;
  letter-spacing: 0.5px;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin-bottom: 8px;
}

.nav-menu a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: rgba(30, 48, 68, 0.8);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nav-menu a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.nav-menu a:hover {
  background-color: rgba(41, 171, 226, 0.1);
  color: #29ABE2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41, 171, 226, 0.15);
}

.nav-menu a:hover:before {
  left: 100%;
}

.nav-menu a.active {
  background-color: rgba(41, 171, 226, 0.15);
  color: #29ABE2;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(41, 171, 226, 0.2);
}

.sidebar-cta {
  padding: 30px 40px 40px;
  position: relative;
  z-index: 1;
}

.sidebar-cta .cta-button {
  width: 100%;
  margin-bottom: 12px;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-cta .cta-button--primary {
  background: linear-gradient(135deg, #3fb4e5 0%, #29ABE2 100%);
  border: none;
}

.sidebar-cta .cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 171, 226, 0.3);
}

.sidebar-cta .cta-button--secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: #29ABE2;
  border: 1px solid rgba(41, 171, 226, 0.2);
}

.sidebar-cta .cta-button--secondary:hover {
  background-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(41, 171, 226, 0.15);
}

.sidebar-social {
  padding: 30px 40px 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sidebar-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  color: rgba(41, 171, 226, 0.6);
  transition: all 0.3s ease;
}

.sidebar-social__link:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #29ABE2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-social__link svg {
  width: 18px;
  height: 18px;
}

.quick-info {
  padding: 30px 20px;
}

.quick-info .quick-info-title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: #1E3044;
}

.challenges {
  position: relative;
  background-color: #1E3044;
  padding-bottom: 120px;
}

.challenges__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: #fff;
  line-height: 1.4;
}

.challenges__arrow-transition {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.challenges__arrow {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

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

.schedule-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.schedule-list li:last-child {
  border-bottom: none;
}

.schedule-list .date {
  font-size: 14px;
  color: #5a6b7d;
}

.schedule-list .status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 15px;
  font-weight: bold;
}

.schedule-list .status.available {
  background-color: #fffeef;
  color: #bcb500;
}

.schedule-list .status.limited {
  background-color: #ddf2fa;
  color: #29ABE2;
}

.testimonial {
  padding: 20px;
  background-color: #E7F8FF;
  margin: 20px;
  border-radius: 10px;
  max-height: 600px;
}

.testimonial .testimonial-title {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 700;
  color: #1E3044;
  position: sticky;
  top: 0;
  background-color: #E7F8FF;
  padding-bottom: 10px;
  z-index: 1;
}

.testimonial .testimonial-items {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

.testimonial .testimonial-items::-webkit-scrollbar {
  width: 6px;
}

.testimonial .testimonial-items::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.testimonial .testimonial-items::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.testimonial .testimonial-items::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.testimonial .testimonial-item {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.testimonial .testimonial-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial .testimonial-item:last-child {
  margin-bottom: 0;
}

.testimonial .testimonial-text {
  font-size: 14px;
  color: #5a6b7d;
  line-height: 1.8;
  margin-bottom: 10px;
  margin-top: 0;
}

.testimonial .testimonial-author {
  font-size: 12px;
  color: #29ABE2;
  text-align: right;
  margin: 0;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
}

.sticky-cta .cta-button {
  width: 100%;
  margin-bottom: 10px;
}

.sticky-cta .price-info {
  text-align: center;
  font-size: 14px;
  color: #5a6b7d;
  margin: 0;
}

/**
 * メインコンテンツエリア
 * - 中央のコンテンツ表示エリア
 * - 左右のサイドバー分のマージンを確保
 */
.main-content {
  flex: 1;
  margin: 0 350px;
  padding: 0;
  min-height: 100vh;
  overflow-y: auto;
  background-color: #fff;
  position: relative;
  z-index: 150;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

section {
  padding: 80px 60px;
}

section:nth-child(even) {
  background-color: #E7F8FF;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: #1E3044;
  line-height: 1.4;
}

.section-lead {
  text-align: center;
  font-size: 16px;
  color: #5a6b7d;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.first-view {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E7F8FF;
}

.first-view__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.first-view__images {
  text-align: center;
  margin-bottom: 30px;
}

.first-view__hero-image,
.first-view__subsidy-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
}

.first-view__cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px;
  color: #1E3044;
}

.sub-title {
  font-size: 24px;
  font-weight: 500;
  color: #29ABE2;
  margin: 0 0 30px;
  line-height: 1.4;
}

.lead-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6b7d;
  margin-bottom: 40px;
}

/**
 * CTA（Call To Action）ボタン
 * - プライマリー：メインのCTA
 * - セカンダリー：サブのCTA
 * - アウトライン：枠線のみCTA
 */
.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 60px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cta-button--primary {
  background-color: #29ABE2;
  color: #fff;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.cta-button--primary:hover {
  background-color: #1a8dbe;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.cta-button--secondary {
  background-color: #FFF956;
  color: #1E3044;
}

.cta-button--secondary:hover {
  background-color: #fff723;
  transform: translateY(-2px);
}

.cta-button--outline {
  background-color: transparent;
  color: #29ABE2;
  border: 2px solid #29ABE2;
}

.cta-button--outline:hover {
  background-color: #29ABE2;
  color: #fff;
}

.cta-button small {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 4px;
  opacity: 0.9;
}

.challenges__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.challenges__trouble-man {
  width: 200px;
  height: auto;
  position: sticky;
  top: 100px;
  flex-shrink: 0;
}

.challenges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  flex: 1;
}

.challenges__item {
  font-weight: 700;
  position: relative;
  background-color: #fff;
  text-align: center;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.challenges__item:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #fff;
}

.challenges__item:after {
  content: "";
  position: absolute;
  left: -23px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 21px solid rgba(0, 0, 0, 0.05);
  z-index: -1;
}

.challenges__text {
  margin: 0;
  font-size: 18px;
  color: #1E3044;
  line-height: 1.8;
  font-weight: 500;
}

.benefits {
  padding-top: 140px;
}

.benefits__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: #1E3044;
  line-height: 1.4;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits__item {
  position: relative;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefits__item:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-image: url("../img/icon-check-fill.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.benefits__item-title {
  font-size: 18px;
  font-weight: 700;
  color: #1E3044;
  margin: 0 0 20px;
  line-height: 1.5;
}

.benefits__item-image {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
}

.achievements .achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .achievements .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.achievements .achievement-item {
  text-align: center;
}

.achievements .achievement-item .achievement-number {
  font-size: 48px;
  font-weight: 700;
  color: #29ABE2;
  line-height: 1.2;
  margin-bottom: 10px;
}

.achievements .achievement-item .achievement-number span {
  font-size: 24px;
  font-weight: 500;
}

.achievements .achievement-item .achievement-label {
  font-size: 16px;
  color: #5a6b7d;
  margin: 0;
}

.features__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: #1E3044;
  line-height: 1.4;
}

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

.features__item {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.features__number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(41, 171, 226, 0.1);
  line-height: 1;
}

.features__heading {
  font-size: 22px;
  font-weight: 700;
  color: #1E3044;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

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

.features__point {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  color: #5a6b7d;
}

.features__point:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #29ABE2;
  font-weight: bold;
}

.curriculum__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: #1E3044;
  line-height: 1.4;
}

.curriculum__course-name {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #29ABE2;
  margin-bottom: 40px;
}

.curriculum__timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.curriculum__timeline:before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e0e0e0;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.5s ease-out;
}

.curriculum__timeline.timeline-visible:before {
  transform: scaleY(1);
}

.curriculum__day {
  position: relative;
  padding-left: 100px;
  margin-bottom: 50px;
}

.curriculum__day.animated .curriculum__day-header:before {
  transform: scale(1);
}

.curriculum__day-header {
  position: relative;
}

.curriculum__day-header:before {
  content: "";
  position: absolute;
  left: -60px;
  top: 10px;
  width: 20px;
  height: 20px;
  background-color: #29ABE2;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #e0e0e0;
  transform: scale(0);
  transition: transform 0.5s ease-out;
}

.curriculum__day-number {
  font-size: 24px;
  font-weight: 700;
  color: #29ABE2;
  margin: 0 0 10px;
}

.curriculum__day-description {
  font-size: 16px;
  color: #5a6b7d;
  margin: 0 0 20px;
}

.curriculum__day-content {
  background-color: #E7F8FF;
  padding: 20px;
  border-radius: 10px;
}

.curriculum__day-item {
  margin-bottom: 10px;
  color: #5a6b7d;
}

.curriculum__day-item:last-child {
  margin-bottom: 0;
}

.course-info__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: #1E3044;
  line-height: 1.4;
}

.course-info__table {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.course-info__row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

.course-info__row:last-child {
  border-bottom: none;
}

.course-info__label {
  width: 200px;
  padding: 20px;
  background-color: #E7F8FF;
  font-weight: 700;
  color: #1E3044;
}

.course-info__content {
  flex: 1;
  padding: 20px;
  color: #5a6b7d;
}

.course-info__content p {
  margin: 0 0 10px;
}

.course-info__content p:last-child {
  margin-bottom: 0;
}

.course-info__content strong {
  color: #1E3044;
}

.subsidy {
  background-color: #FFF956;
  color: #1E3044;
  padding: 100px 60px;
}

.subsidy__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: #1E3044;
  line-height: 1.4;
}

.subsidy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.subsidy__intro {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.subsidy__intro-title {
  font-size: 24px;
  font-weight: 700;
  color: #29ABE2;
  margin: 0 0 20px;
}

.subsidy__intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6b7d;
  margin: 0 0 15px;
}

.subsidy__intro-text:last-child {
  margin-bottom: 0;
}

.subsidy__highlight {
  font-weight: 700;
  color: #1E3044;
  font-size: 18px;
  background-color: white;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin: 0 0 15px;
}

.subsidy__intro-link {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6b7d;
  margin: 0;
}

.subsidy__example {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.subsidy__example-title {
  font-size: 22px;
  font-weight: 700;
  color: #1E3044;
  margin: 0 0 30px;
  text-align: center;
}

.subsidy__calculation {
  background-color: #E7F8FF;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.subsidy__calc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  gap: 20px;
}

.subsidy__calc-item:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.subsidy__calc-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.subsidy__calc-total .subsidy__calc-value {
  font-size: 28px;
  color: #29ABE2;
}

.subsidy__calc-label {
  font-weight: 700;
  color: #1E3044;
  font-size: 18px;
  flex: 1;
}

.subsidy__calc-value {
  font-weight: 700;
  font-size: 24px;
  color: #1E3044;
  flex: 0 0 auto;
  text-align: right;
  min-width: 100px;
}

.subsidy__calc-detail {
  font-size: 14px;
  color: #5a6b7d;
  flex: 1;
  text-align: right;
}

.subsidy__result {
  text-align: center;
}

.subsidy__result img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.subsidy__cta {
  text-align: center;
  margin-top: 40px;
}

.subsidy__cta p {
  font-size: 16px;
  color: #1E3044;
  margin: 0 0 20px;
}

.subsidy__cta .cta-button {
  background-color: #1E3044;
}

.subsidy__cta .cta-button:hover {
  background-color: #0e1721;
}

@media (max-width: 768px) {
  .subsidy {
    padding: 60px 20px;
  }

  .subsidy__intro,
  .subsidy__example {
    padding: 20px;
  }

  .subsidy__calculation {
    padding: 20px;
  }

  .subsidy__calc-item {
    flex-wrap: wrap;
  }

  .subsidy__calc-detail {
    width: 100%;
    margin-top: 5px;
  }

  .subsidy__calc-value {
    font-size: 20px;
  }

  .subsidy__calc-total .subsidy__calc-value {
    font-size: 24px;
  }

  .subsidy__result img {
    max-width: 100%;
  }
}

.instructor__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: #1E3044;
  line-height: 1.4;
}

.instructor__card {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.instructor__image {
  flex-shrink: 0;
}

.instructor__image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.instructor__info {
  flex: 1;
}

.instructor__name {
  font-size: 24px;
  font-weight: 700;
  color: #1E3044;
  margin: 0 0 10px;
}

.instructor__position {
  font-size: 16px;
  color: #29ABE2;
  margin: 0 0 20px;
}

.instructor__bio {
  font-size: 15px;
  color: #5a6b7d;
  line-height: 1.8;
  margin: 0;
}

.customize {
  background-color: #E7F8FF;
}

.customize__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
  color: #1E3044;
  line-height: 1.4;
}

.customize__subtitle {
  font-size: 18px;
  text-align: center;
  color: #5a6b7d;
  margin: 0 0 60px;
}

.customize__container {
  max-width: 1200px;
  margin: 0 auto;
}

.customize__intro {
  text-align: center;
  margin-bottom: 60px;
}

.customize__intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6b7d;
}

.customize__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .customize__options {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.customize__option {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customize__option:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.customize__option-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: rgba(41, 171, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customize__option-icon img {
  width: 50px;
  height: 50px;
}

.customize__option-title {
  font-size: 20px;
  font-weight: 700;
  color: #1E3044;
  margin: 0 0 20px;
}

.customize__option-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.customize__option-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  padding: 12px;
  background-color: rgba(41, 171, 226, 0.05);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.customize__option-item:hover {
  background-color: rgba(41, 171, 226, 0.1);
}

.customize__option-label {
  font-weight: 700;
  color: #29ABE2;
  font-size: 14px;
  min-width: 70px;
}

.customize__option-desc {
  font-size: 14px;
  color: #5a6b7d;
  line-height: 1.6;
  flex: 1;
}

.customize__process {
  background-color: #fff;
  padding: 60px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.customize__process-title {
  font-size: 24px;
  font-weight: 700;
  color: #1E3044;
  text-align: center;
  margin: 0 0 40px;
}

.customize__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

@media (max-width: 1024px) {
  .customize__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.customize__steps:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #29ABE2 10%, #29ABE2 90%, transparent 100%);
  z-index: 0;
}

@media (max-width: 1024px) {
  .customize__steps:before {
    display: none;
  }
}

.customize__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.customize__step-number {
  width: 80px;
  height: 80px;
  background-color: #29ABE2;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(41, 171, 226, 0.3);
}

.customize__step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1E3044;
  margin: 0 0 10px;
}

.customize__step-desc {
  font-size: 14px;
  color: #5a6b7d;
  line-height: 1.6;
  margin: 0;
}

.customize__pricing {
  background-color: #FFF956;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
}

.customize__pricing-title {
  font-size: 22px;
  font-weight: 700;
  color: #1E3044;
  margin: 0 0 30px;
}

.customize__pricing-content {
  max-width: 600px;
  margin: 0 auto;
}

.customize__pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .customize__pricing-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.customize__pricing-label {
  font-weight: 700;
  color: #1E3044;
  font-size: 16px;
}

.customize__pricing-value {
  font-weight: 700;
  font-size: 20px;
  color: #29ABE2;
}

.customize__pricing-note {
  font-size: 14px;
  color: #1E3044;
  margin: 20px 0 0;
  line-height: 1.6;
}

.customize__cta {
  text-align: center;
}

.customize__cta-text {
  font-size: 18px;
  color: #1E3044;
  margin: 0 0 30px;
  font-weight: 500;
}

.faq__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: #1E3044;
  line-height: 1.4;
}

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

.faq__item {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq__item[open] .faq__question:after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__question {
  padding: 20px;
  font-weight: 700;
  color: #1E3044;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #29ABE2;
  transition: transform 0.3s ease;
}

.faq__answer {
  padding: 0 20px 20px;
  margin: 0;
  color: #5a6b7d;
  line-height: 1.8;
}

.final-cta {
  text-align: center;
  padding: 100px 60px;
  background: linear-gradient(135deg, #1E3044 0%, #0e1721 100%);
}

.final-cta__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 40px;
  line-height: 1.4;
}

.final-cta__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.final-cta__form-container {
  max-width: 800px;
  margin: 0 auto 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.final-cta__form-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.final-cta__form-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0 0 30px;
}

.final-cta__form {
  text-align: left;
}

.final-cta__form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.final-cta__form-container .message {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .final-cta__form-row {
    flex-direction: column;
    gap: 0;
  }
}

.final-cta__form-group {
  flex: 1;
  margin-bottom: 20px;
}

.final-cta__form-label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.final-cta__form-required {
  color: #FFF956;
  margin-left: 4px;
}

.final-cta__form-input,
.final-cta__form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.final-cta__form-input::-moz-placeholder,
.final-cta__form-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.final-cta__form-input::placeholder,
.final-cta__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.final-cta__form-input:focus,
.final-cta__form-textarea:focus {
  outline: none;
  border-color: #29ABE2;
  background-color: rgba(255, 255, 255, 0.15);
}

.final-cta__form-input:-webkit-autofill,
.final-cta__form-textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset;
  -webkit-text-fill-color: #fff;
}

.final-cta__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.final-cta__form-submit {
  text-align: center;
  margin-top: 30px;
}

.final-cta__form-submit .cta-button {
  min-width: 200px;
  font-size: 18px;
  padding: 15px 40px;
}

.footer {
  background-color: #1E3044;
  color: #fff;
  padding: 30px;
  text-align: center;
}

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

.footer .footer-content p {
  margin: 5px 0;
  font-size: 14px;
}

.footer .footer-content a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer .footer-content a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .sidebar {
    width: 300px;
  }

  .main-content {
    margin: 0 300px;
  }

  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .container {
    flex-direction: column;
    overflow-x: hidden;
  }

  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    order: 2;
  }

  .sidebar.sidebar-left {
    display: none;
  }

  .sidebar.sidebar-right {
    display: none;
  }

  .sidebar:before,
  .sidebar:after {
    display: none;
  }

  .main-content {
    margin: 0;
    order: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .header__container {
    padding: 0 15px;
  }

  section {
    padding: 60px 30px;
  }

  .first-view__content {
    max-width: 100%;
  }

  .main-title {
    font-size: 36px;
  }

  .sub-title {
    font-size: 20px;
  }

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

  .instructor-card {
    flex-direction: column;
    text-align: center;
  }

  .info-row {
    flex-direction: column;
  }

  .info-row .info-label {
    width: 100%;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 20px;
  }

  .final-cta {
    padding: 60px 15px;
  }

  .final-cta__form-container {
    padding: 20px 15px;
    margin: 0 -15px 40px;
    border-radius: 0;
    width: calc(100% + 30px);
  }

  .final-cta__form-title {
    font-size: 24px;
  }

  .final-cta__form-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .final-cta__form-input,
  .final-cta__form-textarea {
    padding: 10px 12px;
    font-size: 16px;
  }

  .final-cta__form-label {
    font-size: 13px;
  }

  .final-cta__form-submit {
    margin-top: 20px;
  }

  .final-cta__form-submit .cta-button {
    min-width: 100%;
    padding: 12px 30px;
    font-size: 16px;
  }

  .course-info__row {
    flex-direction: row;
  }

  .course-info__label {
    width: 40%;
    flex: 0 0 40%;
    padding: 15px 10px;
    font-size: 14px;
  }

  .course-info__content {
    padding: 15px;
    font-size: 14px;
  }

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

  .sub-title {
    font-size: 18px;
  }

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

  .cta-group {
    flex-direction: column;
  }

  .cta-group .cta-button {
    width: 100%;
  }

  .challenges__container {
    flex-direction: column;
    align-items: center;
  }

  .challenges__trouble-man {
    position: static;
    width: 150px;
    margin-bottom: 30px;
  }

  .challenges__item:before,
  .challenges__item:after {
    display: none;
  }

  .challenges__arrow {
    width: 250px;
  }

  .challenges__grid {
    grid-template-columns: 1fr;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) and (max-width: 768px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .instructor__card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .instructor__image img {
    margin: 0 auto;
  }

  .curriculum__timeline:before {
    left: 15px;
  }

  .curriculum__day {
    padding-left: 50px;
  }

  .curriculum__day .curriculum__day-header:before {
    left: -42px;
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
  }

  .curriculum__day-number {
    font-size: 20px;
  }

  .curriculum__day-description {
    font-size: 14px;
  }

  .curriculum__day-content {
    padding: 15px;
  }

  .curriculum__day-item {
    font-size: 14px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg);
  }

  to {
    opacity: 1;
    transform: rotate(0);
  }
}

@keyframes timelineGrow {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

[data-animation] {
  opacity: 0;
}

.animated {
  opacity: 1 !important;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.animate-fade-in-up {
  animation-name: fadeInUp;
}

.animate-fade-in-down {
  animation-name: fadeInDown;
}

.animate-fade-in-left {
  animation-name: fadeInLeft;
}

.animate-fade-in-right {
  animation-name: fadeInRight;
}

.animate-fade-in {
  animation-name: fadeIn;
}

.animate-scale-in {
  animation-name: scaleIn;
}

.animate-bounce-in {
  animation-name: bounceIn;
}

.animate-rotate-in {
  animation-name: rotateIn;
}

.animate-timeline-grow {
  animation-name: timelineGrow;
}

.benefits__item.show-check:before {
  animation: bounceIn 0.5s ease-out;
}

@media (max-width: 768px) {
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-15px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(15px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  [data-animation] {
    opacity: 0;
  }

  .animated {
    opacity: 1 !important;
  }

  .animated {
    animation-duration: 0.6s;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animation] {
    opacity: 1 !important;
  }
}

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

.reduce-motion [data-animation] {
  opacity: 1 !important;
}

/*# sourceMappingURL=style.css.map */