/* ===== リセット & ベース設定 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== カスタムプロパティ（CSS変数） ===== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f0f9ff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --container-max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* ===== 共通クラス ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-image {
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 0 auto 2rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent {
    color: var(--accent-color);
    font-weight: 600;
}

.type-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.mobile-break {
    display: none;
}

/* ===== ボタンスタイル ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== ヘッダー ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== メインビジュアル ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2334d399' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-benefits {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.zoom-connection {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
}

.location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.flag {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.location span {
    font-weight: 600;
    color: var(--text-primary);
}

.connection-line {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem 0;
    position: relative;
    border-radius: 2px;
}

.pulse {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.8);
        opacity: 1;
    }
}

/* ===== 問題提起セクション ===== */
.problem {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.problem-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== ボランティアの種類解説セクション ===== */
.volunteer-types {
    padding: 80px 0;
    background: white;
}

.volunteer-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-question {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    background: var(--gradient-accent);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.volunteer-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.volunteer-type {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
}

.volunteer-type:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.type-1 {
    border-top: 4px solid var(--primary-color);
}

.type-2 {
    border-top: 4px solid var(--accent-color);
}

.type-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.type-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.type-1 .type-number {
    background: var(--gradient-primary);
}

.type-2 .type-number {
    background: var(--gradient-accent);
}

.type-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.type-content {
    padding: 0 2rem 2rem;
}

.type-purpose,
.type-features,
.type-example {
    margin-bottom: 2rem;
}

.type-purpose h4,
.type-features h4,
.type-example h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.type-purpose i {
    color: var(--danger-color);
}

.type-features i {
    color: var(--success-color);
}

.type-example i {
    color: var(--primary-color);
}



.type-purpose p {
    color: var(--text-secondary);
    font-weight: 500;
}

.type-features ul {
    list-style: none;
    color: var(--text-secondary);
}

.type-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.type-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.type-example blockquote {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}



.volunteer-warning {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.warning-box {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--warning-color);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.warning-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}



/* ===== 志望理由書作成プロセス ===== */
.reason-process {
    padding: 80px 0;
    background: white;
    position: relative;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

/* ステップ接続線 */


.step-item {
    display: flex;
    gap: 2rem;
    position: relative;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    position: relative;
}

.step-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.example-text {
    background: var(--bg-accent);
    padding: 1rem;
    border-radius: var(--border-radius);
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
}

.highlight-text {
    background: var(--accent-color);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

.step-icon {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    box-shadow: var(--shadow-sm);
}

.process-warning {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--warning-color);
    box-shadow: var(--shadow-md);
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.warning-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.warning-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.detailed-explanation p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.warning-note {
    background: #fef2f2;
    border-left: 4px solid var(--danger-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    color: #dc2626;
    font-weight: 500;
    margin-bottom: 1rem;
}

.special-cases {
    background: #f0f9ff;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.note-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.special-cases p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.special-cases p:last-child {
    margin-bottom: 0;
}

.special-cases strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== プログラム一覧 ===== */
.programs {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.program-notice {
    background: #fef3cd;
    border: 2px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-content i {
    color: #f59e0b;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.notice-content p {
    color: #92400e;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.program-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.program-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.program-card.popular {
    border: 3px solid #f59e0b;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.program-card.popular:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(245, 158, 11, 0.3);
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.program-card.combo .program-badge {
    background: var(--gradient-accent);
}

.program-card.new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.program-card.new {
    border: 3px solid #10b981;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
}

.program-card.new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(16, 185, 129, 0.3);
}

.program-card.new .program-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.program-card.short-term {
    background: white;
}

.program-card.short-term .program-badge {
    background: var(--gradient-accent);
}

.program-header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 240px;
}

.program-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    min-height: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.program-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.price-note {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.25rem;
    line-height: 1.3;
}

.subtitle-program {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.25rem;
}

.price-breakdown {
    background: #f0f9ff;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    margin-top: 0.625rem;
    text-align: center;
}

.breakdown-text {
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-align: center;
}

.per-session {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.highlight-price {
    color: #ef4444;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0.25rem;
}

.price-breakdown .optional-note {
    font-size: 0.6rem !important;
    color: var(--text-secondary) !important;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-weight: 400 !important;
    line-height: 1.3;
}

.optional-note {
    font-size: 0.6rem !important;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.program-target {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: center;
    min-height: 1.5rem;
}

.program-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.program-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.program-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.program-content li i {
    color: var(--primary-color);
    width: 16px;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: var(--bg-accent);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}



.workshop-tag {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    border: 2px solid #f59e0b !important;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3) !important;
}

/* ===== プログラムスケジュール ===== */
.program-schedule {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.schedule-container {
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    background: white;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.schedule-table thead {
    background: var(--gradient-primary);
    color: white;
}

.schedule-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-table th:last-child {
    border-right: none;
}

.schedule-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.schedule-table tbody tr:hover {
    background: var(--bg-secondary);
}

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

.schedule-table td {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid var(--border-color);
}

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

.time-slot {
    background: var(--bg-secondary) !important;
    font-weight: 600;
    color: var(--primary-color);
}

.program-activity {
    font-weight: 500;
    border-radius: 6px;
    padding: 0.5rem;
    margin: 0.25rem;
    transition: var(--transition);
}

.program-activity.basic {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
    border: 1px solid #f59e0b;
}

.program-activity.workshop {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
    border: 1px solid #0ea5e9;
}

.program-activity.carte {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
    border: 1px solid #10b981;
}

.program-activity.slum {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #be185d;
    border: 1px solid #ec4899;
}

.program-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.program-cta {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.program-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    max-width: 200px;
}

.program-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== ベーシックコース詳細セクション ===== */
.basic-detail {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.basic-hero {
    position: relative;
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.basic-hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.basic-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    padding: 2rem;
    color: white;
}

.hero-icons {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.activity-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.activity-icon i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: var(--transition);
}

.activity-icon:hover i {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.activity-icon span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.course-highlight {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.highlight-box {
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary-color);
}

.highlight-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
}

.basic-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.basic-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.basic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin: 0 auto 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--bg-accent);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.target-faculties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.faculty {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.basic-summary {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.basic-summary h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.summary-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.summary-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.summary-point i {
    color: var(--success-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.summary-point span {
    color: var(--text-secondary);
    line-height: 1.5;
}

.summary-cta {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ===== ZOOMアクセス情報 ===== */
.zoom-access {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.zoom-info-container {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.zoom-main-info {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    text-align: center;
}

.zoom-url-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.url-display {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.url-text {
    flex: 1;
    text-align: left;
}

.url-text a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    word-break: break-all;
}

.url-text a:hover {
    text-decoration: underline;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.zoom-note {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.passcode-info {
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.zoom-support-info {
    background: #fef3cd;
    border: 2px solid #f59e0b;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.support-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-icon {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notice-content h4 {
    color: #92400e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.notice-content p {
    color: #92400e;
    line-height: 1.6;
    margin: 0;
}

.zoom-quick-access {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    text-align: center;
}

.zoom-quick-access h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.access-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.zoom-join-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.zoom-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

/* レスポンシブ対応 - ZOOMアクセス情報 */
@media (max-width: 768px) {
    .zoom-main-info,
    .zoom-support-info,
    .zoom-quick-access {
        padding: 1.5rem;
    }
    
    .url-display {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .url-text a {
        font-size: 0.95rem;
    }
    
    .access-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .zoom-join-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .support-notice {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ===== 学年別オススメスケジュール ===== */
.grade-recommendations {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.recommendation-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.grade-badge {
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.grade-badge.middle-school {
    background: linear-gradient(135deg, #10b981, #059669);
}

.grade-badge.high-school-1 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.grade-badge.high-school-2 {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.recommendation-content {
    padding: 2rem;
}

.recommendation-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.recommendation-reason {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.recommendation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.recommendation-features .feature {
    background: var(--bg-accent);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.recommendation-benefits {
    display: grid;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.recommendation-note {
    background: #fef3cd;
    border: 2px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 2rem;
}

.recommendation-note .note-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.recommendation-note i {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.recommendation-note p {
    color: #92400e;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* レスポンシブ対応 - 学年別オススメスケジュール */
@media (max-width: 768px) {
    .recommendations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recommendation-card {
        margin: 0 1rem;
    }
    
    .recommendation-content {
        padding: 1.5rem;
    }
    
    .recommendation-note {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .recommendation-note .note-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ===== 特徴セクション ===== */
.features {
    padding: 80px 0;
    background: #f1f5f9;
}

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

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== 成功事例セクション ===== */
.success {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.success-cases {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-item {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.case-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--bg-accent);
}

.case-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.case-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.case-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.case-content {
    padding: 2rem;
}

.case-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.case-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.achievement {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== 唯一無二の体験セクション ===== */
.unique-experience {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.unique-experience .subsection-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.unique-experience .approach-description {
    text-align: center;
    margin-bottom: 4rem;
}

.unique-experience .approach-description h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.unique-experience .description-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.experience-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.experience-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    padding: 2rem;
    color: white;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.overlay-content .connection-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.overlay-content .connection-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.875rem;
}

.overlay-content .connection-info i {
    color: var(--accent-color);
}

.experience-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.experience-point .point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.experience-point .point-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.experience-point .point-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.experience-testimonial {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-content cite {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}



/* ===== アドミッションポリシー分析セクション ===== */
.admission-analysis {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.analysis-header {
    text-align: center;
    margin-bottom: 4rem;
}

.analysis-subtitle {
    margin-top: 2rem;
}

.analysis-subtitle h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.analysis-description {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.analysis-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.chatgpt-method {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--primary-color);
    margin-bottom: 3rem;
}

.chatgpt-method h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.method-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.method-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.analysis-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.analysis-steps .step-item {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.analysis-steps .step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.analysis-steps .step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.analysis-steps .step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.analysis-steps .step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.analysis-conclusion {
    background: var(--gradient-accent);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.analysis-conclusion p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.admission-table-section {
    margin-top: 3rem;
}

.table-container {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    overflow-x: auto;
}

.admission-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.admission-table thead {
    background: var(--gradient-primary);
    color: white;
}

.admission-table th {
    padding: 1.25rem 1rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
}

.admission-table th:first-child {
    width: 20%;
    border-top-left-radius: var(--border-radius);
}

.admission-table th:nth-child(2) {
    width: 50%;
}

.admission-table th:nth-child(3) {
    width: 30%;
}

.admission-table th:last-child {
    border-top-right-radius: var(--border-radius);
}

.admission-table tbody tr {
    transition: var(--transition);
}

.admission-table tbody tr:hover {
    background: var(--bg-secondary);
}

.admission-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.admission-table tbody tr:nth-child(even):hover {
    background: var(--bg-secondary);
}

.admission-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.ability-name {
    font-weight: 600;
    color: var(--primary-color);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.judgment-method {
    color: var(--text-secondary);
    line-height: 1.6;
}

.program-ability-section {
    margin-top: 4rem;
}

.program-ability-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.program-ability-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.program-ability-table thead {
    background: var(--gradient-accent);
    color: white;
}

.program-ability-table th {
    padding: 1.25rem 1rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid var(--accent-color);
}

.program-ability-table th:first-child {
    width: 30%;
    border-top-left-radius: var(--border-radius);
}

.program-ability-table th:last-child {
    border-top-right-radius: var(--border-radius);
}

.program-ability-table tbody tr {
    transition: var(--transition);
    border-bottom: 1px solid #e5e7eb;
}

.program-ability-table tbody tr:hover {
    background: var(--bg-secondary);
}

.program-ability-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.program-ability-table tbody tr:nth-child(even):hover {
    background: var(--bg-secondary);
}

.program-ability-table td {
    padding: 1.5rem 1rem;
    vertical-align: top;
}

.program-name {
    font-weight: 600;
    color: var(--accent-color);
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.abilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ability-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    text-align: center;
    white-space: nowrap;
}

.ability-tag.leadership {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.ability-tag.discovery {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.ability-tag.cooperation {
    background: linear-gradient(135deg, #10b981, #059669);
}

.ability-tag.diversity {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.ability-tag.continuity {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.ability-tag.inclusive-society {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.ability-tag.solution {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.ability-tag.collaboration {
    background: linear-gradient(135deg, #84cc16, #65a30d);
}

.ability-tag.logic {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.ability-tag.expression {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.ability-tag.perspective {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.ability-tag.global {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* ===== CTAセクション ===== */
.cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-secondary);
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== お問い合わせセクション ===== */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.method-info p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.method-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===== フォームスタイル ===== */
.form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

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

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

.required {
    color: var(--danger-color);
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== 保護者同意の注意書き ===== */
.guardian-consent-notice {
    background: #e0f2fe;
    border: 2px solid #0ea5e9;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.consent-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.consent-content i {
    color: #0ea5e9;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.consent-content p {
    color: #075985;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ===== 税込・決済方法表示 ===== */
.tax-note {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.payment-method {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    min-height: 1.5rem;
}

/* ===== 運営団体・企業情報（特商法） ===== */
.organization-info {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.info-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    padding: 1rem 2rem;
    background: #fafafa;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.organizations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.organization-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.organization-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.org-header {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 1.75rem 2rem;
    text-align: center;
    position: relative;
}

.org-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #1e40af;
}

.org-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.org-details {
    padding: 2.5rem 2rem 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:first-child {
    padding-top: 0;
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.85rem;
    min-width: 130px;
    flex-shrink: 0;
    background: #f0f9ff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.detail-value {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
    flex: 1;
    word-break: break-all;
}

.detail-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.detail-value a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* レスポンシブ対応 - 運営団体情報 */
@media (max-width: 768px) {
    .guardian-consent-notice {
        padding: 1.25rem;
        margin: 0 1rem 2rem;
    }
    
    .consent-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .organizations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.9rem 0;
    }
    
    .detail-label {
        min-width: auto;
    }
    
    .organization-card {
        margin: 0 1rem;
    }
    
    .org-header {
        padding: 1.25rem 1.5rem;
    }
    
    .org-header h3 {
        font-size: 1.1rem;
    }
    
    .org-details {
        padding: 1.5rem;
    }
    
    .detail-item {
        padding: 0.75rem 0;
    }
}

/* ===== フッター ===== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--accent-color);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== レスポンシブデザイン ===== */

/* タブレット向け調整 */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* モバイル向け調整 */
@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
    
    /* ナビゲーション */
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* 共通画像 */
    .section-image {
        max-width: 100%;
        height: 200px;
    }

    /* ヒーローセクション */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .benefit-item {
        padding: 0.5rem 0.75rem;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-main-image {
        height: 250px;
    }
    
    .zoom-connection {
        padding: 1rem;
        position: static;
        transform: none;
        margin-top: 1rem;
        min-width: auto;
    }
    
    /* セクションタイトル */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* 問題提起セクション */
    .problem {
        padding: 60px 0;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-item {
        padding: 1.5rem;
    }

    /* ボランティアの種類解説セクション */
    .volunteer-types {
        padding: 60px 0;
    }
    
    .volunteer-intro {
        margin-bottom: 3rem;
    }
    
    .intro-question {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
    
    .volunteer-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .type-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .type-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .type-header h3 {
        font-size: 1.125rem;
    }
    
    .type-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .type-example blockquote {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .warning-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }
    

    
    /* 志望理由書プロセスセクション */
    .reason-process {
        padding: 60px 0;
    }
    

    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }
    
    .step-icon {
        position: static;
        width: 35px;
        height: 35px;
        margin: 1rem auto 0;
    }
    
    .example-text {
        font-size: 0.875rem;
    }
    
    .process-warning {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .warning-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }

    /* プログラムセクション */
    .programs {
        padding: 60px 0;
    }
    
    /* スケジュール表 */
    .program-schedule {
        padding: 60px 0;
    }
    
    .schedule-table {
        font-size: 0.75rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .program-activity {
        padding: 0.25rem;
        margin: 0.125rem;
        font-size: 0.7rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-card {
        margin: 0 10px;
    }

    /* ベーシックコース詳細セクション */
    .basic-detail {
        padding: 60px 0;
    }
    
    .basic-hero {
        margin-bottom: 2rem;
    }
    
    .basic-hero-image {
        height: 200px;
    }
    
    .basic-hero-overlay {
        padding: 1.5rem;
    }
    
    .hero-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .activity-icon i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .activity-icon span {
        font-size: 0.75rem;
    }
    
    .highlight-box {
        padding: 0.75rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .highlight-price {
        font-size: 1.25rem;
    }
    
    .highlight-text {
        font-size: 0.9rem;
    }
    
    .basic-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .basic-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.125rem;
    }
    
    .card-features,
    .target-faculties {
        justify-content: center;
    }
    
    .basic-summary {
        padding: 2rem;
    }
    
    .summary-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-point {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* 特徴セクション */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* 成功事例セクション */
    .success {
        padding: 60px 0;
    }

    /* 唯一無二の体験セクション */
    .unique-experience {
        padding: 60px 0;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .experience-visual {
        order: -1;
    }
    
    .experience-image {
        height: 250px;
    }
    
    .experience-overlay {
        padding: 1.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.25rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .experience-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .experience-point .point-icon {
        font-size: 2rem;
    }
    
    .experience-testimonial {
        padding: 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
    }
    
    .testimonial-content blockquote::before {
        font-size: 3rem;
        top: -0.5rem;
        left: -0.5rem;
    }
    
    .case-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .case-content {
        padding: 1.5rem;
    }
    
    .case-achievements {
        justify-content: center;
    }
    
    /* CTAセクション */
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    /* お問い合わせセクション */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    /* フッター */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* 小さなモバイル向け調整 */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* 画像調整 */
    .section-image {
        height: 150px;
        margin-bottom: 1.5rem;
    }

    /* ヒーローセクション */
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-main-image {
        height: 200px;
    }
    
    /* セクションタイトル */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* ボタン */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* 志望理由書プロセス（小さなモバイル） */

    
    .step-content h3 {
        font-size: 1.125rem;
    }
    
    .example-text {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .warning-content h3 {
        font-size: 1rem;
    }

    /* ボランティアの種類解説（小さなモバイル） */
    .intro-question {
        font-size: 1rem;
    }
    
    .type-header h3 {
        font-size: 1rem;
    }
    
    .type-purpose h4,
    .type-features h4,
    .type-example h4 {
        font-size: 0.9rem;
    }
    
    .type-features li {
        font-size: 0.9rem;
    }
    
    .type-example blockquote {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    .warning-content h3 {
        font-size: 1rem;
    }
    
    .warning-content p {
        font-size: 0.9rem;
    }

    /* 唯一無二の体験セクション（小さなモバイル） */
    .experience-image {
        height: 200px;
    }
    
    .experience-overlay {
        padding: 1rem;
    }
    
    .overlay-content h3 {
        font-size: 1.125rem;
    }
    
    .experience-point .point-content h4 {
        font-size: 1.125rem;
    }
    
    .experience-point .point-content p {
        font-size: 0.9rem;
    }
    
    .experience-testimonial {
        padding: 1.5rem;
    }
    
    .testimonial-content blockquote {
        font-size: 0.9rem;
    }
    
    .testimonial-content cite {
        font-size: 0.9rem;
    }

    /* プログラムカード */
    .program-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .program-price {
        font-size: 1.75rem;
    }
    
    .program-content {
        padding: 1.5rem;
    }

    /* ベーシックコース詳細（小さなモバイル） */
    .basic-card {
        padding: 1.25rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .basic-summary {
        padding: 1.5rem;
    }
    
    .basic-summary h3 {
        font-size: 1.25rem;
    }
    
    /* ベーシックコースヒーロー（小さなモバイル） */
    .basic-hero-image {
        height: 180px;
    }
    
    .basic-hero-overlay {
        padding: 1rem;
    }
    
    .hero-icons {
        gap: 0.75rem;
    }
    
    .activity-icon i {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .activity-icon span {
        font-size: 0.7rem;
    }
    
    .highlight-box {
        padding: 0.5rem 1rem;
    }
    
    .highlight-price {
        font-size: 1.125rem;
    }
    
    .highlight-text {
        font-size: 0.8rem;
    }
    
    /* 特徴セクション */
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    /* 成功事例 */
    .case-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* CTAセクション */
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* フォーム */
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem;
        font-size: 0.9rem;
    }
}

/* 超小型デバイス向け調整 */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.625rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .program-card,
    .problem-item,
    .case-item {
        margin: 0 5px;
    }
    
    .zoom-connection {
        padding: 1rem;
    }
    
    .kenya-map {
        padding: 1.5rem;
    }
}

/* 横向き表示の調整 */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===== ワークショップ詳細セクション ===== */
.workshop-detail-section {
    margin-top: 3rem;
}

.workshop-detail-card {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.workshop-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.workshop-icon {
    background: var(--gradient-accent);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.workshop-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.workshop-warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.workshop-warning .warning-text p {
    color: #dc2626;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.workshop-challenge {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.workshop-challenge h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.challenge-questions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.challenge-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.challenge-item .question {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.challenge-item .sub-question {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.workshop-training {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 2rem;
}

.workshop-training h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.training-steps {
    display: grid;
    gap: 1.5rem;
}

.training-step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.training-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.step-number {
    background: var(--gradient-accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.step-content h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.additional-training-info {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.additional-training-info p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* レスポンシブ対応 - ワークショップ詳細 */
@media (max-width: 768px) {
    .workshop-detail-card {
        padding: 1.5rem;
    }
    
    .workshop-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .workshop-header h3 {
        font-size: 1.25rem;
    }
    
    .workshop-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .challenge-questions {
        gap: 1rem;
    }
    
    .challenge-item,
    .training-step {
        padding: 1rem;
    }
    
    .training-step {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .step-number {
        align-self: flex-start;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ===== プログラム詳細セクション ===== */
.program-detail-section {
    margin-top: 3rem;
}

.program-detail-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.program-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.program-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.program-overview {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.program-overview p {
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.program-approach {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.program-approach h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.approach-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ineffective-questions {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

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

.question-mark {
    font-size: 1.25rem;
}

.question-text {
    color: #dc2626;
    font-weight: 500;
}

.approach-explanation {
    background: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.approach-explanation p {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.approach-explanation p:last-child {
    margin-bottom: 0;
}

.program-process {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.program-process h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-steps {
    display: grid;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.process-step .step-icon {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.process-step .step-content h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.process-step .step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.program-results {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 2rem;
}

.program-results h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.results-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.certificate-content {
    display: grid;
    gap: 1rem;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.content-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.content-item span {
    color: var(--text-primary);
    line-height: 1.5;
}

.certificate-sample {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
}

.certificate-sample h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.certificate-text > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.certificate-document {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 1rem;
}

.certificate-document p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.certificate-document p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 - プログラム詳細 */
@media (max-width: 768px) {
    .program-detail-card {
        padding: 1.5rem;
    }
    
    .program-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .program-header h3 {
        font-size: 1.25rem;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .program-overview,
    .program-approach,
    .program-process,
    .program-results {
        padding: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .process-step .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .content-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ===== プログラム詳細セクション ===== */
.program-detail-section {
    margin-top: 3rem;
}

.program-detail-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.program-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.program-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.program-overview {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.program-overview p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.program-approach {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
}

.program-approach h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.approach-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.ineffective-questions {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.question-mark {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.question-text {
    color: #dc2626;
    font-weight: 500;
    font-size: 1rem;
}

.approach-warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.approach-warning p {
    color: #c2410c;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* レスポンシブ対応 - プログラム詳細 */
@media (max-width: 768px) {
    .program-detail-card {
        padding: 1.5rem;
    }
    
    .program-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .program-header h3 {
        font-size: 1.25rem;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .program-overview,
    .program-approach {
        padding: 1.5rem;
    }
    
    .ineffective-questions,
    .approach-warning {
        padding: 1rem;
    }
    
    .question-item {
        gap: 0.75rem;
    }
}

/* ===== プログラム画像セクション ===== */
.program-hero-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.program-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* レスポンシブ対応 - プログラム画像 */
@media (max-width: 768px) {
    .program-hero-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .program-hero-image {
        height: 225px;
    }
}

/* ===== ワークショップ注記セクション ===== */
.workshop-note {
    margin-top: 2rem;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.note-content p {
    color: #e65100;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.note-content strong {
    color: #bf360c;
    font-weight: 700;
}

/* レスポンシブ対応 - ワークショップ注記 */
@media (max-width: 768px) {
    .workshop-note {
        padding: 1rem;
    }
    
    .note-content p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .workshop-note {
        padding: 0.75rem;
    }
    
    .note-content p {
        font-size: 0.8rem;
    }
}

/* ===== ワークショップ画像セクション ===== */
.workshop-hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.workshop-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* レスポンシブ対応 - ワークショップ画像 */
@media (max-width: 768px) {
    .workshop-hero-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .workshop-hero-image {
        height: 150px;
    }
}

/* ===== バイバイスラム詳細セクション ===== */
.bye-bye-slum {
    background: linear-gradient(135def, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
}

.business-examples {
    margin-top: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #e0f2fe;
}

.business-examples h5 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.business-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.business-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.business-icon {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
}

.business-item h6 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.business-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* レスポンシブ対応 - バイバイスラム */
@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .business-item {
        padding: 0.75rem;
    }
    
    .business-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .business-item h6 {
        font-size: 0.875rem;
    }
    
    .business-item p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .business-examples {
        padding: 1rem;
    }
}

/* ===== 落とし穴セクション ===== */
.pitfall-section {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pitfall-card {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border: 2px solid var(--warning-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 70%;
    max-width: 800px;
}

.pitfall-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--warning-color);
}

.pitfall-icon {
    background: var(--gradient-accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.pitfall-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.pitfall-content p {
    color: #c2410c;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* レスポンシブ対応 - 落とし穴セクション */
@media (max-width: 768px) {
    .pitfall-card {
        padding: 1.5rem;
        width: 90%;
    }
    
    .pitfall-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .pitfall-header h3 {
        font-size: 1.125rem;
    }
    
    .pitfall-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .pitfall-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pitfall-card {
        padding: 1.25rem;
        width: 95%;
    }
    
    .pitfall-content p {
        font-size: 0.9rem;
    }
}

/* ===== プログラムメインタイトル ===== */
.program-main-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.program-main-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

/* レスポンシブ対応 - プログラムメインタイトル */
@media (max-width: 768px) {
    .program-main-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .program-main-title {
        padding: 1rem 0;
    }
    
    .program-main-title h2 {
        font-size: 1.75rem;
    }
}

/* ===== 警告セクション ===== */
.warning-section {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.warning-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid var(--danger-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 900px;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--danger-color);
}

.warning-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.warning-header h3 {
    color: var(--danger-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.warning-content p {
    color: #991b1b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 500;
}

.warning-content p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 - 警告セクション */
@media (max-width: 768px) {
    .warning-card {
        padding: 1.5rem;
        width: 95%;
    }
    
    .warning-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .warning-header h3 {
        font-size: 1.125rem;
    }
    
    .warning-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .warning-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .warning-card {
        padding: 1.25rem;
    }
    
    .warning-content p {
        font-size: 0.9rem;
    }
}