/* ===== 追加スタイル（LP最適化版） ===== */

/* ファーストビュー調整 */
.hero-subtitle-large {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.hero-subtitle-large strong {
    font-weight: 700;
    color: var(--secondary-color);
}

.hero-target {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-target i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.hero-stats-simple {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.hero-stats-simple .stat-item {
    text-align: center;
}

.hero-stats-simple .stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.3));
}

.hero-stats-simple .stat-number span {
    font-size: 2.5rem;
}

.hero-stats-simple .stat-label {
    font-size: 1.1rem;
    color: #2d3748;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* sp-only クラス */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}

/* タイプカード（Type 1 / Type 2） */
.types-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: var(--spacing-lg) 0;
}

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

.type-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.type-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.type-card.type-2 .type-badge {
    background: linear-gradient(135deg, var(--accent-color), #34d399);
}

.type-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.type-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.type-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.type-features h4,
.type-example h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.type-features ul {
    list-style: none;
    margin-left: 0;
}

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

.type-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.example-text {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.example-text p {
    line-height: 1.9;
    color: var(--text-dark);
}

.example-text ul {
    margin-top: 1rem;
}

.example-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Type1詳細セクション */
.type1-detail-section {
    background: var(--bg-white);
    padding: var(--spacing-lg) 0;
}

.type-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.type-badge-large.type-2-badge {
    background: linear-gradient(135deg, var(--accent-color), #34d399);
}

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

.program-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

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

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

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.program-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    text-align: left;
}

.program-features li {
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.program-features li:last-child {
    border-bottom: 1px solid var(--border-color);
}

.program-features i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.type1-note {
    margin-top: 3rem;
    background: #fef3c7;
    border-left: 4px solid var(--warning-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.type1-note i {
    color: var(--warning-color);
    margin-right: 0.5rem;
}

/* Type2詳細セクション */
.type2-detail-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: var(--spacing-lg) 0;
}

.ability-programs {
    margin-top: 3rem;
}

.ability-program-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.ability-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.ability-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.ability-icon {
    font-size: 2.5rem;
}

.ability-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.ability-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.ability-details h4,
.ability-proof h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ability-details ul {
    list-style: none;
    margin-left: 0;
}

.ability-details li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.ability-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.ability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.ability-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #34d399);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ability-table-section {
    margin-top: 3rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
}

.ability-table-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.ability-table {
    width: 100%;
    border-collapse: collapse;
}

.ability-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.ability-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.ability-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

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

.ability-table .text-success {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.ability-table .text-muted {
    color: var(--text-light);
    font-size: 1.3rem;
}

/* アドミッションポリシーセクション */
.admission-policy-section {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

.admission-intro {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
}

.admission-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 2rem;
    text-align: center;
}

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

.admission-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.admission-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.admission-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.admission-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.admission-judgment-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.admission-judgment-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.admission-judgment-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.admission-judgment-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

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

.admission-note {
    margin-top: 3rem;
    background: #fef3c7;
    border-left: 4px solid var(--warning-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.note-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.note-text i {
    color: var(--warning-color);
    margin-right: 0.5rem;
}

/* コースカード */
.courses-section {
    background: var(--bg-white);
    padding: var(--spacing-lg) 0;
}

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

.course-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

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

.course-featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.featured-label {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.course-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.course-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
}

.course-type {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.course-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.course-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.course-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.course-recommend {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.btn-course {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: block;
}

.btn-course:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.btn-featured {
    background: var(--secondary-color);
}

.btn-featured:hover {
    background: var(--secondary-dark);
}

/* スケジュールセクション */
.schedule-section {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

.schedule-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1.5rem;
}

.schedule-table-wrapper {
    margin-bottom: 3rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.schedule-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.schedule-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

.grade-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.grade-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.grade-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.grade-recommend {
    list-style: none;
}

.grade-recommend li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.grade-recommend i {
    margin-right: 0.5rem;
}

.grade-recommend .fa-check {
    color: var(--accent-color);
}

.grade-recommend .fa-times {
    color: var(--danger-color);
}

.grade-warning {
    border: 2px solid var(--danger-color);
    background: #fef2f2;
}

.text-danger {
    color: var(--danger-color);
}

/* なぜここでボランティア */
.why-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: var(--spacing-lg) 0;
}

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

.why-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

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

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.why-cta {
    text-align: center;
    margin-top: 3rem;
}

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

/* FAQ */
.faq-section {
    background: var(--bg-white);
    padding: var(--spacing-lg) 0;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i.fa-question-circle {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    flex-shrink: 0;
    color: var(--text-light);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 4.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* プロフィール */
.profile-section {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

.profile-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.profile-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.profile-bio {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* 運営者情報・特商法・プライバシーポリシー */
.operator-section,
.tokushoho-section,
.privacy-section {
    background: var(--bg-white);
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--border-color);
}

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

.operator-table {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
}

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

.operator-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    width: 200px;
    background: var(--bg-light);
}

.operator-table td {
    padding: 1rem;
    color: var(--text-dark);
}

.tokushoho-content,
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.tokushoho-item,
.privacy-item {
    margin-bottom: 2rem;
}

.tokushoho-item h3,
.privacy-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.tokushoho-item p,
.privacy-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-left: 1rem;
}

.privacy-intro {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.privacy-item ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.privacy-item li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* フッター調整 */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-md) 0 var(--spacing-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-logo i {
    font-size: 1.5rem;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary-color);
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .online-programs-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-placeholder {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .admission-grid {
        grid-template-columns: 1fr;
    }
    
    .grade-grid {
        grid-template-columns: 1fr;
    }
    
    .ability-tags {
        justify-content: center;
    }
    
    .course-skills {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-subtitle-large {
        font-size: 1rem;
    }
    
    .hero-stats-simple .stat-number {
        font-size: 3rem;
    }
    
    .type-title {
        font-size: 1.5rem;
    }
    
    .ability-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .faq-answer p {
        padding-left: 1.5rem;
    }
}

/* テーブルレスポンシブ */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .table-responsive table {
        font-size: 0.85rem;
    }
    
    .table-responsive th,
    .table-responsive td {
        padding: 0.5rem;
    }
}
