:root {
    --primary-color: #0A2647; /* ネイビー */
    --secondary-color: #144272; /* 薄いネイビー */
    --accent-color: #2056a8; /* 青 */
    --text-color: #333333;
    --light-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Lato', sans-serif;
}

body {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2056a8 0%, #3b7ddd 100%);
    color: #fff;
    border: 2px solid #2056a8;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 8px 32px rgba(32,86,168,0.25), 0 2px 8px rgba(32,86,168,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(32,86,168,0.35), 0 4px 12px rgba(32,86,168,0.20);
    background: linear-gradient(135deg, #3b7ddd 0%, #2056a8 100%);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

section {
    padding: 5rem 0;
}

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

/* CITについてセクション */
.about-cit {
    background: linear-gradient(135deg, #e3f0ff 0%, #f7fbff 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.about-cit::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    z-index: 1;
}

.about-cit-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(80,120,200,0.10), 0 1.5px 8px rgba(80,120,200,0.08);
    padding: 3rem 2.5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-cit-left {
    flex: 0 0 300px;
    position: sticky;
    top: 2rem;
}

.about-cit-right {
    flex: 1;
}

/* スライドアニメーション */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.slide-in-left.animate,
.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* アニメーション遅延 */
.slide-in-right.animate {
    transition-delay: 0.2s;
}

.about-cit-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.about-cit-header h2 {
    font-size: 2.7rem;
    font-weight: 900;
    color: #2056a8;
    letter-spacing: 0.08em;
    text-shadow: 0 4px 16px rgba(32,86,168,0.10);
    text-align: center;
    margin-bottom: 1.2rem;
}

.about-cit-header .accent-line {
    display: none;
}

/* 悩みセクション */
.problems {
    background: linear-gradient(135deg, #e3f0ff 0%, #f7fbff 100%);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.problems::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(80, 120, 200, 0.1) 0%, rgba(80, 120, 200, 0.05) 100%);
    z-index: 1;
}

.problems::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(80, 120, 200, 0.08) 0%, rgba(80, 120, 200, 0.03) 100%);
    z-index: 1;
}

.problems h2 {
    color: #2056a8;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-shadow: 0 4px 16px rgba(32,86,168,0.10);
}

.problems-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.problem-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(80,120,200,0.10), 0 1.5px 8px rgba(80,120,200,0.08);
    position: relative;
    z-index: 2;
}

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(80,120,200,0.15), 0 2px 12px rgba(80,120,200,0.12);
}

.problem-icon {
    font-size: 2.5rem;
    color: #2056a8;
    margin-bottom: 1.5rem;
}

.problem-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

/* フェードインアニメーション */
.fade-in-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* フェードイン遅延 */
.fade-in-item:nth-child(1) { transition-delay: 0.1s; }
.fade-in-item:nth-child(2) { transition-delay: 0.2s; }
.fade-in-item:nth-child(3) { transition-delay: 0.3s; }
.fade-in-item:nth-child(4) { transition-delay: 0.4s; }
.fade-in-item:nth-child(5) { transition-delay: 0.5s; }

/* スライドインヘッディング */
.slide-in-heading {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-heading.animate {
    opacity: 1;
    transform: translateY(0);
}

.problems-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(80, 120, 200, 0.2);
    position: relative;
    z-index: 2;
}

.solution-heading {
    font-size: 2.2rem;
    font-weight: 900;
    color: #2056a8;
    margin-bottom: 2rem;
    text-shadow: 0 4px 16px rgba(32,86,168,0.20);
    background: linear-gradient(135deg, #e3f0ff 0%, #f7fbff 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(80,120,200,0.15), 0 2px 8px rgba(80,120,200,0.10);
    border: 2px solid rgba(80,120,200,0.1);
    position: relative;
    z-index: 2;
}

.solution-heading::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #2056a8, #3b7ddd);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
}

.problems-cta p {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.arrow-down {
    margin: 1.5rem 0;
    animation: bounce 2s infinite;
}

.arrow-down i {
    font-size: 2rem;
    color: #2056a8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.problems-cta .btn {
    background: linear-gradient(135deg, #2056a8 0%, #3b7ddd 100%);
    color: var(--light-color);
    border: 2px solid #2056a8;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 8px 32px rgba(32,86,168,0.25), 0 2px 8px rgba(32,86,168,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problems-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.problems-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(32,86,168,0.35), 0 4px 12px rgba(32,86,168,0.20);
    background: linear-gradient(135deg, #3b7ddd 0%, #2056a8 100%);
}

.problems-cta .btn:hover::before {
    left: 100%;
}

/* シンプル化したカリキュラムのスタイル */
.curriculum-simple {
    background: linear-gradient(135deg, #e3f0ff 0%, #f7fbff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.curriculum-simple::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd70033 0%, #f7fbff00 100%);
    z-index: 1;
}

.curriculum-simple .container {
    position: relative;
    z-index: 2;
}

.curriculum-tabs {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.curriculum-tab {
    background: #fff;
    border: 2px solid #2056a8;
    color: #2056a8;
    border-radius: 25px;
    padding: 0.7rem 2.2rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(32,86,168,0.06);
    outline: none;
}

.curriculum-tab.active,
.curriculum-tab:focus {
    background: linear-gradient(90deg, #2056a8 0%, #3b7ddd 100%);
    color: #fff;
    border: 2px solid #2056a8;
    box-shadow: 0 4px 16px rgba(32,86,168,0.12);
}

.curriculum-tab:hover:not(.active) {
    background: #e3f0ff;
    color: #2056a8;
    border: 2px solid #3b7ddd;
}

.curriculum-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(80,120,200,0.13), 0 1.5px 8px rgba(80,120,200,0.10);
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.curriculum-section:hover {
    box-shadow: 0 16px 48px 0 rgba(80,120,200,0.18), 0 1.5px 8px rgba(80,120,200,0.13);
}

.curriculum-category {
    color: #2056a8;
    font-size: 1.3rem;
    font-weight: 800;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: 0.03em;
}

.curriculum-category::before {
    content: '\f02d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-right: 0.7rem;
}

.session-count {
    font-size: 1rem;
    background: linear-gradient(90deg, #ffd700 0%, #ffe259 100%);
    color: #2056a8;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    margin-left: auto;
    box-shadow: 0 2px 8px #ffd70033;
}

.curriculum-items {
    display: grid;
    gap: 1.2rem;
}

.curriculum-item {
    display: flex;
    align-items: flex-start;
    border-left: 4px solid var(--primary-color);
    padding: 0.7rem 0 0.7rem 1.2rem;
    background: rgba(10, 38, 71, 0.02);
    border-radius: 6px;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
    position: relative;
}

.curriculum-item:hover {
    background: #e3f0ff;
    transform: translateX(8px) scale(1.02);
}

.session-number {
    background: var(--primary-color);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-right: 1rem;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 2px 8px #2056a822;
}

/* カリキュラムセクション - モバイル対応 */
@media (max-width: 768px) {
    .curriculum-section {
        padding: 1.2rem 0.7rem;
        border-radius: 12px;
    }
    .curriculum-category {
        font-size: 1.1rem;
        padding-bottom: 0.7rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .session-count {
        font-size: 0.9rem;
        padding: 0.2rem 0.7rem;
        margin-top: 0.5rem;
    }
    .curriculum-item {
        font-size: 0.95rem;
        padding: 0.5rem 0 0.5rem 0.7rem;
        flex-direction: column;
    }
    .session-number {
        font-size: 0.85rem;
        min-width: 40px;
        padding: 0.15rem 0.5rem;
        margin-bottom: 0.5rem;
    }
    .curriculum-tabs {
        flex-direction: column;
        align-items: center;
    }
    .curriculum-tab {
        margin: 0.5rem 0;
        width: 80%;
    }
}

/* ヘッダー */
header {
    background-color: var(--light-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: auto; /* 高さを自動に */
    padding-top: 0; /* パディングをリセット */
}

/* iPhoneのノッチ対応 */
@supports (padding-top: env(safe-area-inset-top)) {
    header {
        padding-top: 0; /* リセット */
    }
    
    .header-container {
        padding-top: env(safe-area-inset-top); /* ヘッダーコンテナにパディングを追加 */
    }
}

header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  height: 64px;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 0.6rem;
}

.logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 0.04em;
  line-height: 1;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  padding: 0;
  margin-left: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.2rem;
  color: var(--primary-color);
  z-index: 1002;
  transition: background 0.2s;
}
.menu-toggle:focus {
  outline: none;
}
.menu-toggle i {
  font-size: 2.3rem;
  line-height: 1;
}

/* ヘッダー - モバイル対応 */
@media (max-width: 768px) {
  header .header-container {
    height: 56px;
    padding: 0 0.7rem;
  }
  .logo {
    height: 56px;
  }
  .logo img {
    height: 32px;
  }
  .logo span {
    font-size: 1.05rem;
  }
  .menu-toggle {
    height: 56px;
    width: 56px;
    font-size: 1.8rem;
  }
  .menu-toggle i {
    font-size: 1.9rem;
  }
}

nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    margin-left: 0; /* 左マージンを0に */
}

nav ul {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1), visibility 0.35s;
}
nav ul.show {
  display: flex;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 993px) {
  nav ul {
    display: flex;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
}

nav ul li {
    margin: 0 0.8rem; /* 左右の余白を調整 */
    white-space: nowrap;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 0.3rem;
    display: block;
}

.cta-header {
    flex: 0 0 auto;
    margin-left: auto;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3; /* モバイル時にナビゲーションを下に移動 */
        width: 100%;
        margin-top: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .menu-toggle {
        display: block;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .cta-header {
        order: 4;
        margin: 1rem auto 0;
    }
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ヒーローセクションのタイポグラフィ改善 */
.hero {
    background: #fff;
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 200px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 60vh;
}

.hero-text {
    text-align: center;
    width: 100%;
}

.hero h1 .hero-highlight {
    color: #0A2647 !important;
    font-size: 4.5rem;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.hero h1 {
    color: #0A2647;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: #333;
    margin-bottom: 2rem;
}

/* 新しいタイポグラフィスタイル */
.hero h1::after {
    display: none;
}

.hero-highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* CTAボタンの改善 */
.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
    z-index: -1;
}

.hero-btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        min-height: 60vh;
        height: 60vh;
        padding: 0;
    }
    .hero-content {
        display: flex;
        flex: 1 1 0%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 0;
        height: 100%;
    }
    .hero-text {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1 1 0%;
        height: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        min-height: 60vh;
        height: 60vh;
        padding: 0;
    }
    .hero-content {
        display: flex;
        flex: 1 1 0%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 0;
        height: 100%;
    }
    .hero-text {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1 1 0%;
        height: 100%;
    }
}

/* スライドショー */
.slideshow-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.slide {
    display: none;
    width: 100%;
}

.slide-image {
    width: 100%;
    height: auto;
    border: 5px solid var(--light-color);
    border-radius: 5px;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(10, 38, 71, 0.7);
    color: var(--light-color);
    text-align: center;
    padding: 12px;
    font-weight: 500;
}

/* スライドショーナビゲーション */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: var(--light-color);
    font-weight: bold;
    font-size: 1.5rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(10, 38, 71, 0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(10, 38, 71, 0.8);
}

/* ドットインジケーター */
.dots-container {
    text-align: center;
    margin-top: 1rem;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
    background-color: var(--light-color);
}

/* フェードアニメーション */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.price-tag {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    bottom: 60px;  /* 修正: スライドキャプションと重ならないよう上方に移動 */
    right: 10px;   /* 修正: 右端から少し内側に配置 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;    /* 修正: より高いz-indexで前面に表示 */
}

.slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(10, 38, 71, 0.7);
    color: var(--light-color);
    text-align: center;
    padding: 12px;
    font-weight: 500;
    z-index: 4;    /* 修正: スライドキャプションのz-indexを設定 */
}

/* 特徴セクション */
.features {
    background: linear-gradient(135deg, #e3f0ff 0%, #f7fbff 100%);
    padding: 5rem 0;
}

.features h2 {
    color: #162238;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto 3rem auto;
}

.features h2::after {
    display: none;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    max-width: none;
    margin: 0;
    padding-left: 0;
}

.feature-card {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
    background: linear-gradient(120deg, #f0f6ff 60%, #eaf2fb 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(80,120,200,0.13), 0 1.5px 8px rgba(80,120,200,0.10);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 16px 48px 0 rgba(80,120,200,0.18), 0 1.5px 8px rgba(80,120,200,0.13);
    z-index: 2;
}

.feature-icon {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.feature-card strong {
    font-size: 1.18rem;
    font-weight: 700;
    color: #234;
    letter-spacing: 0.01em;
    line-height: 1.7;
}

.closing-text {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* 講師紹介セクション */
.instructors {
    background-color: var(--gray-color);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.instructor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.instructor-info {
    padding: 1.5rem;
}

.instructor-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* 受講の流れセクション */
.process {
    background-color: var(--light-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.process-step {
    width: 22%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* 料金と申し込みセクション */
.pricing {
  background: linear-gradient(135deg, #e3f0ff 0%, #f7fbff 100%);
  color: #222;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  display: none;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(80,120,200,0.13), 0 1.5px 8px rgba(80,120,200,0.10);
  padding: 3rem 2.5rem;
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
  color: #222;
}

/* 料金プランカード内の全要素の色を統一 */
.pricing-card * {
  color: #222;
}

.pricing-card:hover {
  box-shadow: 0 16px 48px 0 rgba(80,120,200,0.18), 0 1.5px 8px rgba(80,120,200,0.13);
}

.pricing-title {
  color: #2056a8;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}

.pricing-price {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: none;
}

.pricing-price small {
  font-size: 1.1rem;
  color: #888;
  margin-left: 0.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-feature {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.pricing-feature i {
  color: var(--accent-color);
  margin-right: 0.5em;
  font-size: 1.2em;
}

.pricing-button {
  margin-top: 2.2rem;
}

.pricing-button .btn {
  background: linear-gradient(135deg, #2056a8 0%, #3b7ddd 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 1.1rem 2.8rem;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 8px 32px rgba(32,86,168,0.18), 0 2px 8px rgba(32,86,168,0.10);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.pricing-button .btn:hover {
  background: linear-gradient(135deg, #3b7ddd 0%, #2056a8 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 48px 0 rgba(32,86,168,0.25), 0 4px 12px rgba(32,86,168,0.20);
}

@media (max-width: 600px) {
  .pricing-card {
    padding: 1.5rem 0.7rem;
    border-radius: 12px;
  }
  .pricing-title {
    font-size: 1.2rem;
  }
  .pricing-price {
    font-size: 2.2rem;
  }
  .pricing-feature {
    font-size: 0.95rem;
  }
  .pricing-button .btn {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
}

/* 申し込みフォーム */
.application-form-container {
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.application-form-container h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.application-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.required {
    color: #e74c3c;
    margin-left: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-privacy {
    display: flex;
    align-items: center;
}

.checkbox-group {
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.8rem;
    width: auto;
    height: auto;
}

.checkbox-item label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
}

.recaptcha-container {
    margin: 2rem 0;
    text-align: center;
}

.recaptcha-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(10, 38, 71, 0.05);
    border-radius: 5px;
}

.form-note p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

/* FAQセクション */
.faq {
    background-color: var(--gray-color);
    padding: 5rem 0;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

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

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

/* ブログセクション */
.blog {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.blog-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-post {
    background-color: var(--gray-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post-image {
    height: 200px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-post-author i, .blog-post-date i {
    margin-right: 0.3rem;
}

.blog-post-excerpt {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-post-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-link:hover {
    color: var(--secondary-color);
}

.blog-post-link i {
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.blog-more {
    text-align: center;
    margin-top: 3rem;
}

/* フッター */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-nav {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-nav h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

/* 料金プランセクション */
.pricing {
    background: linear-gradient(135deg, #e3f0ff 0%, #f7fbff 100%);
    color: #222;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pricing h2 {
    color: #222;
}

/* 重複定義を削除 - 上記の.pricing-cardに統合済み */

.pricing-button {
    margin-top: 2rem;
}

/* 申し込みフォームセクション */
.application {
    background-color: var(--gray-color);
    padding: 5rem 0;
}

.application-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 3rem auto 0;
}

.application h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

/* 講師紹介セクションのスタイル */
.instructors {
    background-color: var(--gray-color);
    padding: 5rem 0;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.instructor-card {
    display: flex;
    flex-direction: column;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.instructor-image-container {
    width: 100%;
    padding: 1.5rem;
}

.instructor-image {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.instructor-info {
    padding: 0 1.5rem 1.5rem;
}

.instructor-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.instructor-achievements {
    margin: 1.5rem 0;
    padding-left: 0;
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.instructor-achievements li {
    margin-bottom: 0.8rem;
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;  /* 行間を調整 */
    flex-wrap: nowrap;  /* 全体的に折り返し防止 */
    padding-right: 8px;  /* この行を新たに追加 */
}

.achievement-content {
    flex: 1;  /* flexboxの残りのスペースをすべて埋める */
    display: inline-block;  /* インラインブロック要素として表示 */
    line-height: 1.4;  /* 行の高さを調整 */
}

.instructor-achievements li strong {
    white-space: nowrap;  /* 数字と単位が分離しないように */
    display: inline-block;
}

.check-mark {
    color: var(--accent-color);
    margin-right: 8px;
    font-weight: bold;
    flex-shrink: 0;  /* チェックマークが縮小しないように */
}

/* 大画面向けのレイアウト */
@media (min-width: 992px) {
    .instructor-card {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .instructor-image-container {
        width: 40%;
        padding: 1.5rem;
    }
    
    .instructor-info {
        width: 60%;
        padding: 1.5rem;
    }
    
    .instructor-image {
        height: 100%;
        max-height: 400px;
    }
}

/* モバイル向けの調整 */
@media (max-width: 768px) {
    .instructor-image {
        height: 300px;
    }
    
    .instructor-name {
        font-size: 1.5rem;
    }
    
    .instructor-achievements {
        padding: 1rem;
    }
}

/* ヒーローセクションの幅を固定 */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-text {
    flex: 1;
    max-width: 50%;
    padding-right: 2rem;
}

.hero-image {
    width: 50%;
    max-width: 600px;
    position: relative;
    height: 400px; /* 高さを固定 */
    overflow: hidden;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を適切にトリミングしてカバー */
    display: block;
}

/* 特徴セクションの強化スタイル */
.features {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.02) 70%);
    top: -150px;
    right: -100px;
    z-index: 1;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(230, 230, 230, 0.7);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: rgba(10, 38, 71, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-icon i {
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--light-color);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 1.5px;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2.2rem;
    }
}

/* 各カードに個別の色を設定 */
.feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, #0A2647, #144272);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #2E8B57, #3CB371);
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, #8A2BE2, #9370DB);
}

/* 受講の流れセクション強化スタイル */
.process {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f4fa 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.process::before,
.process::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.process::before {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(10, 38, 71, 0.05) 0%, rgba(10, 38, 71, 0.01) 70%);
    left: -100px;
    top: -50px;
}

.process::after {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.01) 70%);
    right: -150px;
    bottom: -100px;
}

.process h2 {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.process h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.process-steps {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent-color) 0%, 
        #4FB0AE 33%, 
        #5D9CEC 66%, 
        var(--primary-color) 100%);
    z-index: 1;
    border-radius: 1.5px;
}

.process-step {
    background-color: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 2;
    width: 22%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.7);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    margin: -3rem auto 1.5rem;
    position: relative;
    z-index: 3;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid;
    transition: all 0.3s ease;
}

/* 各ステップの色をグラデーションで変化 */
.process-step:nth-child(1) .step-number {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.process-step:nth-child(2) .step-number {
    color: #4FB0AE;
    border-color: #4FB0AE;
}

.process-step:nth-child(3) .step-number {
    color: #5D9CEC;
    border-color: #5D9CEC;
}

.process-step:nth-child(4) .step-number {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.process-step:hover .step-number {
    color: white;
}

.process-step:nth-child(1):hover .step-number {
    background-color: var(--accent-color);
}

.process-step:nth-child(2):hover .step-number {
    background-color: #4FB0AE;
}

.process-step:nth-child(3):hover .step-number {
    background-color: #5D9CEC;
}

.process-step:nth-child(4):hover .step-number {
    background-color: var(--primary-color);
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.process-step:hover h3 {
    color: var(--accent-color);
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

/* 矢印アイコンを追加 */
.process-step::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -12%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.4;
}

.process-step:last-child::after {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        width: 45%;
        margin-bottom: 4rem;
    }
    
    .process-step::after {
        right: auto;
        top: auto;
        bottom: -2.5rem;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
    
    .process-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .process-step {
        width: 100%;
        margin-bottom: 4rem;
    }
    
    .process-step:last-child {
        margin-bottom: 0;
    }
}

/* モバイル対応の強化 - 追加CSS */

/* モバイルメニューのスタイル改善 */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 0;
        margin: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 0;
    }
    
    .cta-header {
        display: none;
    }
}

/* ヒーローセクションのモバイル最適化 */
@media (max-width:768px){

    /* 固定ヘッダーの高さ（ロゴ + バー分）*/
    :root{ --header-h:64px; }
  
    .hero{
      /* 下側 5rem の余白は残しつつ、上方向はゼロに */
      padding: 2rem 0 5rem;
      /* ↓ ここを"5rem"固定ではなくヘッダーの高さで上書き */
      padding-top: calc(var(--header-h) + 1.5rem);
    }
  
    /* iPhone ノッチに合わせる（対応ブラウザだけ有効）*/
    @supports(padding:env(safe-area-inset-top)){
      .hero{
        padding-top:calc(
          var(--header-h) + env(safe-area-inset-top) + 1.5rem
        );
      }
    }
  
    /* ↓ 既存のレイアウト調整はそのまま残して OK */
    .hero-content{ flex-direction:column; }
    .hero-text{
      flex:100%; padding-right:0; text-align:center; margin-bottom:2rem;
      max-width:100%; display:block; visibility:visible; opacity:1;
    }
    .hero h1{
      font-size:1.8rem; margin-bottom:1rem;
      white-space:normal; overflow:visible;
    }
    .hero h1::after{ margin:1rem auto 0; }
    .hero-subtitle{
      font-size:1.1rem; padding-left:0; border-left:none;
      padding-top:.5rem; border-top:2px solid var(--accent-color);
      display:block; white-space:normal;
    }
    .hero-image{ width:100%; height:300px; margin-top:2rem; }
    .hero-cta{ justify-content:center; }
  }

/* 受講の流れセクションのモバイル対応 */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        width: 100%;
        margin-bottom: 3rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .process-step::after {
        content: '\f078'; /* 下向き矢印 */
        right: auto;
        top: auto;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* カリキュラムセクションのモバイル対応 */
@media (max-width: 576px) {
    .curriculum-tab {
        width: 100%;
        margin: 0.3rem 0;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .curriculum-section {
        padding: 1rem;
    }
    
    .curriculum-category {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .session-count {
        margin-top: 0.5rem;
        align-self: flex-start;
    }
    
    .curriculum-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .session-number {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* 講師紹介セクションのモバイル対応 */
@media (max-width: 768px) {
    .instructor-card {
        flex-direction: column;
    }
    
    .instructor-image-container {
        width: 100%;
    }
    
    .instructor-image {
        height: 250px;
    }
    
    .instructor-info {
        width: 100%;
        padding: 1rem;
    }
    
    .instructor-achievements {
        padding: 1rem;
    }
    
    .instructor-achievements li {
        font-size: 0.9rem;
        display: flex;
        flex-wrap: nowrap;  /* 折り返し防止 */
        align-items: flex-start;
        margin-bottom: 0.8rem;
    }
    
    .check-mark {
        flex-shrink: 0;  /* チェックマークが縮小しないように */
        margin-right: 8px;
        margin-top: 0.1rem;
    }

    .instructor-achievements li {
        font-size: 0.9rem;
    }
}

/* 料金プランのモバイル対応 */
@media (max-width: 576px) {
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
}

/* 申し込みフォームのモバイル対応 */
@media (max-width: 576px) {
    .application-card {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-privacy label {
        font-size: 0.8rem;
    }
    
    .recaptcha-container {
        transform: scale(0.8);
        transform-origin: left center;
    }
}

/* FAQセクションのモバイル対応 */
@media (max-width: 576px) {
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* タッチデバイス向けの改善 */
@media (hover: none) {
    /* ホバーエフェクトの代替 */
    .feature-card, 
    .process-step, 
    .instructor-card, 
    .curriculum-item {
        transition: none;
    }
    
    .feature-card:hover, 
    .process-step:hover, 
    .instructor-card:hover {
        transform: none;
    }
    
    /* タッチしやすくするための調整 */
    .dot, 
    .prev, 
    .next, 
    .faq-question {
        padding: 0.5rem;
    }
    
    nav ul li a, 
    .btn {
        padding: 0.8rem 1.5rem;
    }
}

/* iPhoneのノッチ対応 */
@supports (padding-top: env(safe-area-inset-top)) {
    header {
        padding-top: var(--safe-area-inset-top);
    }
    
    nav ul.show {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* スクロールを滑らかにする */
html {
    scroll-behavior: smooth;
}

/* 画像の遅延読み込みのスケルトンスタイル */
.lazy-image {
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.lazy-image::before {
    content: '';
    display: block;
    position: absolute;
    left: -150px;
    top: 0;
    height: 100%;
    width: 150px;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: loading-animation 1.5s infinite;
}

@keyframes loading-animation {
    from {
        left: -150px;
    }
    to {
        left: 100%;
    }
}

/* モバイル対応の強化 - 追加CSS */
@media (max-width: 768px) {
    .hero {
        padding-top: 40px; /* 一旦パディングをリセット */
        margin-top: 60px; /* ヘッダーの高さ分だけマージンを設定 */
    }
    
    .header-container {
        padding-top: env(safe-area-inset-top); /* これは残す */
    }
}

/* フッターセクション */
footer {
    background-color: #f5f5f5;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* PC・モバイル共通で適用されるようにする */
a.logo {
    text-decoration: none !important;
    color: inherit !important;
  }

/* モバイル対応（改善版） */
@media (max-width: 768px) {
    .header-container {
      display: flex;
      justify-content: space-between; /* ロゴとメニューを左右に */
      align-items: center;             /* 縦中央揃え */
      padding: 0.8rem 1.2rem;
      position: relative;
    }
  
    .logo {
        display: flex;
        align-items: center;
    }
    
    .logo img {
        height: 32px;  /* ロゴ画像の高さ */
        margin-right: 8px;  /* 画像と文字の間隔 */
    }
    
    .logo h1 {
        font-size: 1rem;  /* 1.2rem → 1rem */
        margin: 0;
    }
    
    
    .menu-toggle {
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--primary-color);
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  
  /* 開講日程セクションのスタイル */
.course-schedule {
    background-color: var(--gray-color);
    padding: 5rem 0;
    position: relative;
}

.schedule-container {
    max-width: 900px;
    margin: 2rem auto 0;
}

.schedule-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* === スケジュール（テーブル型） === */
.schedule-table-container {
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(80,120,200,0.13), 0 1.5px 8px rgba(80,120,200,0.10);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  min-width: 800px;
}

.schedule-table th {
  background: linear-gradient(135deg, #2056a8 0%, #3b7ddd 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 1.2rem 1rem;
  text-align: left;
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.schedule-table th:first-child {
  border-top-left-radius: 16px;
}

.schedule-table th:last-child {
  border-top-right-radius: 16px;
}

.schedule-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:hover {
  background-color: rgba(32,86,168,0.03);
}

.course-name-cell {
  font-weight: 700;
  color: #2056a8;
  font-size: 1.1rem;
}

.course-name-cell .badge {
  display: inline-block;
  border-radius: 12px;
  padding: 0.2em 0.8em;
  font-size: 0.8em;
  font-weight: 700;
  margin-left: 0.5em;
}

.badge.open {
  background: #3ed17b;
  color: #fff;
}

.badge.full {
  background: #bbb;
  color: #fff;
}

.badge.new {
  background: linear-gradient(90deg, #fff700 0%, #ffe259 100%);
  color: #2056a8;
  animation: shine 2s infinite;
  font-weight: 900;
  box-shadow: 0 0 8px 2px #ffe25955;
}

.badge.preparing {
  background: #ffa500;
  color: #fff;
  font-weight: 700;
}

.start-date-cell {
  font-weight: 600;
  color: #2056a8;
  font-size: 1rem;
}

.schedule-time-cell {
  color: #2056a8;
  font-weight: 500;
}

.program-cell {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.apply-btn {
  background: linear-gradient(135deg, #2056a8 0%, #3b7ddd 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32,86,168,0.3);
}

.apply-btn:disabled {
  background: #bbb;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@keyframes shine {
  0%, 100% { filter: brightness(1);}
  50% { filter: brightness(1.5);}
}

/* モバイル対応 */
@media (max-width: 768px) {
  .schedule-table-container {
    margin: 0 1rem;
  }
  
  .schedule-table {
    font-size: 0.9rem;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 0.8rem 0.5rem;
  }
  
  .course-name-cell {
    font-size: 1rem;
  }
  
  .apply-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .schedule-table th,
  .schedule-table td {
    padding: 0.6rem 0.3rem;
    font-size: 0.8rem;
  }
  
  .course-name-cell .badge {
    font-size: 0.7em;
    padding: 0.1em 0.5em;
  }
}

/* === 曜日フィルター === */
.weekday-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.weekday-filter button {
  background: #fff;
  border: 2px solid #2056a8;
  color: #2056a8;
  border-radius: 25px;
  padding: 0.6rem 1.8rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(32,86,168,0.06);
  outline: none;
  margin: 0;
}

.weekday-filter button.active,
.weekday-filter button:focus {
  background: linear-gradient(90deg, #2056a8 0%, #3b7ddd 100%);
  color: #fff;
  border: 2px solid #2056a8;
  box-shadow: 0 4px 16px rgba(32,86,168,0.12);
}

.weekday-filter button:hover:not(.active) {
  background: #e3f0ff;
  color: #2056a8;
  border: 2px solid #3b7ddd;
}

@media (max-width: 600px) {
  .weekday-filter {
    gap: 0.5rem;
  }
  .weekday-filter button {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }
}



/* ハンバーガー動作用：必ず他の nav ルールより後ろか、!important を付ける */
nav ul { display:none; }
nav ul.show { display:flex!important; flex-direction:column; }

@media (min-width:993px){
  nav ul { display:flex!important; }   /* デスクトップで常に表示 */
}

header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0.8rem 1.2rem;
  }
  
  .menu-toggle{
    font-size:1.8rem;
    cursor:pointer;
    background:none;
    border:none;
  }
  
  /* SP メニュー初期は非表示 */
  header nav ul{
    list-style:none;
    margin:0;
    padding:0;
  }
  
  @media(max-width:992px){
    header nav ul{
      padding:0;
      box-shadow:0 2px 6px rgba(0,0,0,.1);
    }
    header nav ul li{border-bottom:1px solid #eee;}
    header nav ul li a{
      display:block;padding:1rem .5rem;text-align:center;
    }
  }
  
  @media (min-width:993px){
    .menu-toggle{display:none;}
    nav ul{display:flex !important;}
  }

  /* ===== ロゴの表示を整える ===== */
  .logo{
    display:flex;
    align-items:center;
    font-weight:700;
    text-decoration:none;
    color:inherit;
    flex-shrink:0;
  }
.logo img{height:32px;width:auto;margin-right:0.4rem;}
.logo span{
    font-size:1.1rem;
    line-height:1;
    white-space:nowrap;      /* ✅ 改行禁止で 1 行に固定 */
}
@media(max-width:768px){
    .logo span{font-size:1rem;white-space:nowrap;}     /* 念のためモバイルでも保持 */
}

.animated-text span {
    opacity: 0;
    display: inline-block;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(20px);
}

.animated-text span.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-highlight.animated-text {
    white-space: nowrap;
}

#main-title1.hero-highlight.animated-text,
#main-title2.hero-highlight.animated-text,
#main-title3.hero-highlight.animated-text {
  display: block;
  text-align: center;
  font-size: 86.39px;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
  line-height: 1.0;
}

#main-title1.hero-highlight.animated-text,
#main-title3.hero-highlight.animated-text {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.about-cit-body p.intro-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #234;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .about-cit-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .about-cit-left {
    flex: none;
    position: static;
    width: 100%;
  }

  .about-cit-right {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .about-cit-content {
    padding: 1.2rem 1rem;
    border-radius: 12px;
    max-width: 95vw;
    margin: 0 auto;
  }
  .about-cit-header h2 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .about-cit-body .intro-text,
  .about-cit-body p.intro-lead {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
  }
  .benefit-cards {
    flex-direction: column;
    gap: 1.2rem;
    margin: 1.5rem 0;
    align-items: center;
  }
  .benefit-card {
    min-width: 0;
    width: 100%;
    max-width: 350px;
    padding: 1.2rem 0.7rem;
    border-radius: 10px;
    margin: 0 auto;
  }
  .benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }
  .about-cit-body {
    padding: 1rem 0.2rem;
    border-radius: 8px;
  }
  .hero h1 {
    font-size: 2.1rem;
    margin-bottom: 0.2rem;
  }
  .hero h1 .hero-highlight,
  #main-title1.hero-highlight.animated-text,
  #main-title3.hero-highlight.animated-text {
    font-size: 1.3rem;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    letter-spacing: 0.01em;
    word-break: keep-all;
  }
  #main-title2.hero-highlight.animated-text {
    font-size: 1.3rem;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    letter-spacing: 0.01em;
    word-break: keep-all;
    padding-left: 1em;
  }
  .hero {
    padding-top: 35px;
    min-height: 10vh;
  }
  header {
    height: 48px;
    min-height: 48px;
    padding: 0 0.5rem;
  }
  .menu-toggle {
    font-size: 2rem;
    right: 1rem;
    top: 2.2rem;
    z-index: 1001;
  }
  .logo img {
    height: 24px;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-highlight.animated-text {
  display: inline-block;
  min-width: 12em;
  max-width: 100%;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .hero h1 .hero-highlight,
  #main-title1.hero-highlight.animated-text,
  #main-title2.hero-highlight.animated-text,
  #main-title3.hero-highlight.animated-text {
    font-size: 2.3rem;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    letter-spacing: 0.01em;
    word-break: keep-all;
    text-align: center;
    display: inline-block;
    min-width: 10em;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
  }
  .hero {
    padding-top: 35px;
    min-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  #main-title2.hero-highlight.animated-text {
    padding-left: 0 !important;
  }
}

#scrollToTopBtn {
  position: fixed;
  right: 1.2rem;
  bottom: 1.5rem;
  z-index: 9999;
  background: linear-gradient(135deg, #2056a8 0%, #3b7ddd 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 8px 32px rgba(32,86,168,0.18), 0 2px 8px rgba(32,86,168,0.10);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1), background 0.3s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}
#scrollToTopBtn.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
#scrollToTopBtn:hover {
  background: linear-gradient(135deg, #3b7ddd 0%, #2056a8 100%);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 48px 0 rgba(32,86,168,0.25), 0 4px 12px rgba(32,86,168,0.20);
}
#scrollToTopBtn svg {
  width: 1.6em;
  height: 1.6em;
  display: block;
}
@media (max-width: 600px) {
  #scrollToTopBtn {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}

#menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), visibility 0.35s;
}
#menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 993px) {
  #menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
  }
}

.form-privacy input {
    width: auto;
    margin-right: 0.5rem;
}

.form-privacy label {
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
}

.btn-header {
  font-size: 1rem;
  padding: 0.5em 1.4em;
  margin-left: 1em;
  height: 2.4em;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(32,86,168,0.10);
  border-radius: 25px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .btn-header {
    font-size: 0.95rem;
    padding: 0.4em 1em;
    height: 2em;
    margin-left: 0.5em;
  }
}

/* about-cit SVG背景 */
.about-cit-graph-bg {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.about-cit-bg-svg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.about-cit-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
  .about-cit-graph-bg {
    min-height: 320px;
  }
  .about-cit-bg-svg svg {
    min-height: 320px;
  }
}
@media (max-width: 600px) {
  .about-cit-graph-bg {
    min-height: 220px;
  }
  .about-cit-bg-svg svg {
    min-height: 220px;
  }
}

/* WHOLE LIFEについて（ミッション風デザイン） */
.about-cit-mission {
  background: #fff;
  min-height: 80vh;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.about-cit-mission .container {
  height: 100%;
}

.about-cit-mission-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3vw;
  position: relative;
  width: 100%;
  min-height: 80vh;
  height: 80vh;
}
.about-cit-mission-left {
  flex: 1 1 100%;
  max-width: 100%;
  display: block;
  align-items: initial;
  justify-content: initial;
}
.about-cit-mission-right {
  flex: 0 0 20%;
  max-width: 20%;
  min-width: 320px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.about-cit-mission-title {
  font-size: 1.1rem;
  color: #b0b0b0;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}
.about-cit-mission-lead {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  text-align: center;
  font-size: 3.5rem;
  color: #111;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  margin-left: 0;
  margin-right: 0;
}

.about-cit-mission-lead.animate {
  opacity: 1;
  transform: translateX(0);
}

.about-cit-mission-lead > div {
  display: block;
}

.about-cit-mission-text {
  position: absolute;
  right: 0;
  left: auto;
  bottom: 300px;
  margin-right: 2rem;
  margin-left: 0;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.8;
  text-align: left;
  max-width: 500px;
  background: none;
  z-index: 2;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s, transform 0.8s;
}

.about-cit-mission-text.animate {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-cit-mission-lead .highlight {
  color: #3388c7;
  background: none;
  font-weight: 800;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.about-cit-mission-right {
  flex: 0 0 50%;
  min-width: 320px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.about-cit-mission-bg-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #e3f3ff 0%, #b3d6f2 60%, #e3f3ff 100%);
  opacity: 0.7;
  filter: blur(32px);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.about-cit-mission-desc {
  position: relative;
  z-index: 2;
  font-size: 1.35rem;
  color: #555;
  line-height: 2.1;
  font-weight: 400;
  background: none;
  padding: 2.5rem 2rem;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

@media (max-width: 1100px) {
  .about-cit-mission-flex {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
    min-height: auto;
  }
  .about-cit-mission-left, .about-cit-mission-right {
    min-width: 0;
    width: 100%;
  }
  .about-cit-mission-left {
    text-align: center;
    justify-content: center;
  }
  .about-cit-mission-right {
    align-items: center;
    justify-content: center;
  }
  .about-cit-mission-lead {
    text-align: center;
    font-size: 2.5rem;
  }
  .about-cit-mission-text {
    text-align: center;
    margin-right: auto;
  }
  .about-cit-mission-bg-circle {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 600px) {
  .about-cit-mission {
    padding: 2.5rem 0 2rem 0;
    min-height: 50vh;
  }
  .about-cit-mission-flex {
    min-height: 50vh;
  }
  .about-cit-mission-lead {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .about-cit-mission-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .about-cit-mission-desc {
    font-size: 1rem;
    padding: 1.2rem 0.5rem;
  }
  .about-cit-mission-bg-circle {
    width: 180px;
    height: 180px;
    filter: blur(18px);
  }
}

/* 見出しを大きく・青グラデーションで */
.about-cit-mission-heading {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 2.2rem;
  background: linear-gradient(90deg, #4a98d3 0%, #2b7bb7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(80px);
  transition: none;
}
.about-cit-mission-heading.fadein {
  animation: fadein-right-to-left 1.1s cubic-bezier(.4,0,.2,1) 0.1s 1 both;
}
@keyframes fadein-right-to-left {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-cit-mission-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3vw;
  position: relative;
}
.about-cit-mission-left {
  flex: 0 0 40%;
  max-width: 40%;
  min-width: 260px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-cit-mission-right {
  flex: 0 0 60%;
  max-width: 60%;
  min-width: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .about-cit-mission-flex {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .about-cit-mission-left, .about-cit-mission-right {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .about-cit-mission-heading {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 600px) {
  .about-cit-mission {
    padding: 2.5rem 0 2rem 0;
  }
  .about-cit-mission-heading {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  .about-cit-mission-lead {
    font-size: 1.1rem;
  }
  .about-cit-mission-desc {
    font-size: 1rem;
    padding: 1.2rem 0.5rem;
  }
  .about-cit-mission-bg-circle {
    width: 180px;
    height: 180px;
    filter: blur(18px);
  }
}

/* 縦型特徴カードデザイン */
.features-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-vertical-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(80,120,200,0.10), 0 1.5px 8px rgba(80,120,200,0.08);
  padding: 3.5rem 4rem;
  min-height: 260px;
  gap: 3.5rem;
  position: relative;
  overflow: hidden;
}

.feature-vertical-icon {
  min-width: 70px;
  min-height: 70px;
  max-width: 70px;
  max-height: 70px;
  background: linear-gradient(135deg, #3b7ddd 0%, #2056a8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(32,86,168,0.10);
}

.feature-vertical-content {
  flex: 1;
  min-width: 0;
}

.feature-vertical-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2056a8;
  margin-bottom: 1.5rem;
}

.feature-vertical-content p {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.7;
}

.feature-vertical-image {
  min-width: 320px;
  max-width: 420px;
  width: 32vw;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-vertical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  background: #e3f0ff;
}

@media (max-width: 900px) {
  .feature-vertical-card {
    padding: 2rem 0.5rem;
    min-height: 0;
    gap: 1.5rem;
  }
  .feature-vertical-image {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 200px;
    margin-top: 1rem;
  }
  .feature-vertical-content.simple-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .feature-vertical-content.simple-text p {
    font-size: 1.05rem;
  }
}

/* features-vertical 丸数字デザイン */
.feature-vertical-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  max-width: 64px;
  margin-right: 1.5rem;
}

.feature-vertical-number svg {
  display: block;
}

/* features-vertical テキストを中央寄せ・シンプルに */
.feature-vertical-content.simple-text {
  text-align: center;
  padding: 0 1rem;
}

.feature-vertical-content.simple-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2056a8;
  margin-bottom: 0.5rem;
}

.feature-vertical-content.simple-text p {
  font-size: 1.05rem;
  color: #333;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 900px) {
  .feature-vertical-number {
    margin-right: 0;
    margin-bottom: 0.5rem;
    min-width: 48px;
    max-width: 48px;
  }
  .feature-vertical-content.simple-text {
    text-align: center;
    padding: 0;
  }
}

/* features-vertical テキストを左寄せに */
.feature-vertical-content.simple-text {
  text-align: left;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-vertical-content.simple-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2056a8;
  margin-bottom: 0.5rem;
}

.feature-vertical-content.simple-text p {
  font-size: 1.05rem;
  color: #333;
  font-weight: 500;
  margin: 0;
}

/* features-vertical-card 洗練デザイン調整 */
.feature-vertical-card {
  background: linear-gradient(90deg, #f7fbff 60%, #e3f0ff 100%);
  border: 1.5px solid #e0e7ef;
  box-shadow: 0 4px 24px rgba(80,120,200,0.08), 0 1.5px 8px rgba(80,120,200,0.04);
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  gap: 2.2rem;
}

@media (max-width: 900px) {
  .feature-vertical-content.simple-text {
    text-align: left;
    padding: 0;
  }
  .feature-vertical-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 1rem;
  }
}

.features-vertical h2 {
  color: #2056a8;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 16px rgba(32,86,168,0.10);
}

/* 完全オンラインカードを大きく横長に */
.feature-vertical-card {
  background: #f5f8fd;
  border: 1.5px solid #e0e7ef;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(80,120,200,0.06), 0 1.5px 8px rgba(80,120,200,0.03);
  display: flex;
  align-items: center;
  padding: 3.5rem 4rem;
  min-height: 260px;
  gap: 3.5rem;
  margin-bottom: 2.5rem;
}
.feature-vertical-number {
  min-width: 64px;
  max-width: 64px;
  margin-right: 2.5rem;
}
.feature-vertical-content.simple-text {
  text-align: left;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-vertical-content.simple-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2056a8;
  margin-bottom: 1.5rem;
}
.feature-vertical-content.simple-text p {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
  margin: 0;
  line-height: 2.1;
}
.feature-vertical-image {
  min-width: 260px;
  max-width: 340px;
  width: 28vw;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-vertical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  background: #e3f0ff;
}
@media (max-width: 900px) {
  .feature-vertical-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0.5rem;
    min-height: 0;
  }
  .feature-vertical-image {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 180px;
    margin-top: 1rem;
  }
  .feature-vertical-content.simple-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .feature-vertical-content.simple-text p {
    font-size: 1.05rem;
  }
}

/* --- なぜこの講座を立ち上げたのかセクション --- */
.why-launch-section {
  background: linear-gradient(120deg, #f7fafc 60%, #e3eafc 100%);
  padding: 72px 0 64px 0;
  position: relative;
  overflow: hidden;
}
.why-launch-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.13) 0%, rgba(255,255,255,0.01) 80%);
  z-index: 0;
  pointer-events: none;
  filter: blur(8px);
}
.why-launch-inner {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,0.98);
  border-radius: 32px;
  box-shadow: 0 12px 48px rgba(60, 90, 130, 0.13), 0 2px 12px rgba(60, 90, 130, 0.08);
  padding: 56px 36px 48px 36px;
  position: relative;
  z-index: 1;
  border: 2.5px solid #ffe082;
}
.why-launch-title-area {
  margin-bottom: 36px;
  position: relative;
}
.why-launch-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b7ddd;
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 24px #ffe08244, 0 1.5px 6px #3b7ddd22;
}
.why-launch-title::after {
  content: '';
  display: block;
  margin: 0.7em auto 0 auto;
  width: 120px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #fffbe7 60%, #ffd700 100%);
  box-shadow: 0 2px 12px #ffd70055;
}
.why-launch-content {
  font-size: 1.18rem;
  color: #333;
  line-height: 2.2;
  letter-spacing: 0.01em;
  text-align: left;
  position: relative;
  z-index: 2;
}
.why-launch-content p {
  margin-bottom: 1.3em;
  position: relative;
}
.why-launch-content p:first-child::before {
  content: '\f004';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #ffd700;
  font-size: 1.2em;
  margin-right: 0.5em;
  vertical-align: middle;
}
.why-launch-content p.strong {
  font-size: 1.22rem;
  font-weight: 700;
  color: #2056a8;
  background: linear-gradient(90deg, #e3eafc 60%, #fffbe7 100%);
  border-radius: 0.4em;
  padding: 0.2em 0.6em;
  display: inline-block;
  box-shadow: 0 2px 8px #3b7ddd22;
}
.why-launch-content p:last-child {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2056a8;
  background: linear-gradient(90deg, #e3eafc 60%, #fffbe7 100%);
  border-radius: 0.4em;
  padding: 0.2em 0.6em;
  display: inline-block;
  box-shadow: 0 2px 8px #3b7ddd22;
}
@media (max-width: 600px) {
  .why-launch-inner {
    padding: 22px 4px 18px 4px;
    border-radius: 16px;
  }
  .why-launch-title {
    font-size: 1.3rem;
  }
  .why-launch-title::after {
    width: 60px;
    height: 3px;
  }
  .why-launch-content {
    font-size: 1rem;
  }
}

/* --- ゴージャス装飾調整: ハート・ゴールド下線削除、強調文をブルーに --- */
.why-launch-content p:first-child::before {
  display: none;
}
.why-launch-title::after {
  display: none;
}
.why-launch-content p.strong {
  font-size: 1.22rem;
  font-weight: 700;
  color: #2056a8;
  background: linear-gradient(90deg, #e3eafc 60%, #fffbe7 100%);
  border-radius: 0.4em;
  padding: 0.2em 0.6em;
  display: inline-block;
  box-shadow: 0 2px 8px #3b7ddd22;
}

/* 講座の特徴セクション（洗練・横長カード） */
.features-vertical {
  background: linear-gradient(120deg, #e3eafc 60%, #f7fafc 100%);
  padding: 64px 0;
}

.features-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-vertical-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(59,125,221,0.08);
  padding: 36px 48px;
  gap: 48px;
  min-height: 220px;
  transition: box-shadow 0.3s;
}

.feature-vertical-content {
  flex: 1;
  min-width: 0;
}

.feature-vertical-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3b7ddd;
  margin-bottom: 12px;
}

.feature-vertical-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

.feature-vertical-image {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-vertical-image img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px #3b7ddd22;
  background: #e3eafc;
}

@media (max-width: 900px) {
  .feature-vertical-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 12px;
  }
  .feature-vertical-image {
    width: 100%;
    justify-content: flex-start;
  }
  .feature-vertical-image img {
    width: 100%;
    max-width: 320px;
    height: 140px;
  }
}

/* セクション見出しを黒・統一フォントに */
.text-center,
.slide-in-heading,
.why-launch-title,
.instructor-name,
.curriculum-category,
.faq h2,
.pricing-title,
.application h2,
.schedule-table th,
.features-vertical h2 {
  color: #111 !important;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* curriculum-intro などサブタイトルも統一 */
.curriculum-intro,
.schedule-intro {
  color: #222;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
}

.features-vertical .feature-vertical-image {
  min-width: 320px;
  max-width: 420px;
  width: 32vw;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.features-vertical .feature-vertical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  background: #e3f0ff;
  display: block;
  margin: 0;
  box-shadow: none;
  padding: 0;
}

@media (max-width: 900px) {
  .feature-vertical-image {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 180px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .feature-vertical-image {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .feature-vertical-image img {
    max-width: 90%;
    width: auto;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 900px) {
  .feature-vertical-card {
    align-items: center;
  }
  .feature-vertical-image {
    margin: 0 auto;
  }
  .feature-vertical-image img {
    max-width: 90%;
    width: auto;
    margin: 0 auto;
    display: block;
  }
}

.feature-vertical-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.feature-vertical-number {
  margin-right: 1rem;
}
@media (max-width: 900px) {
  .feature-vertical-header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 1rem;
  }
  .feature-vertical-number {
    margin-right: 0.7rem;
  }
}

.feature-title-inline {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.7em;
}
.feature-number-inline {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 900px) {
  .feature-title-inline {
    font-size: 1.05rem;
    gap: 0.4em;
  }
}

.course-schedule .schedule-table th {
  color: #fff !important;
}




