@charset "UTF-8";

/* ==========================================================================
   Project: Connect Station HOME
   File: css/education-school.css
   Description: 学校講演・BCP支援ページ専用デザイン
   ========================================================================== */

/* --- ヒーローセクション --- */
.hero-school {
    background-image: linear-gradient(to top, rgba(0, 100, 180, 0.8), rgba(80, 180, 240, 0.4)), url('/images/common/school-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}
.hero-bcp {
    background-image: linear-gradient(to top, rgba(10, 30, 50, 0.8), rgba(40, 60, 80, 0.4)), url('/images/common/bcp-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    margin-top: 0;
}

.hero-project-content {
    color: white;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.project-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    margin: 0 0 1rem 0;
    border-left: 6px solid #fff;
    padding-left: 1.5rem;
}

.project-catchcopy {
    font-size: 1.2rem;
    font-weight: bold;
    background-color: rgba(255,255,255,0.9);
    color: var(--color-primary);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-left: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- イントロダクション --- */
.education-intro {
    padding: 5rem 0;
    background-color: #f8f9fa;
}
.intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
@media (max-width: 768px) { 
    .intro-container { flex-direction: column; text-align: center; } 
    .intro-container.reverse { flex-direction: column; }
}
.intro-container.reverse { flex-direction: row-reverse; }

.intro-guide img {
    width: 160px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.intro-text h2 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}
.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* --- プログラムリスト (Accordion) --- */
.program-list {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.program-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}
.program-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.program-item summary {
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
    font-size: 1.1rem;
    color: var(--color-text);
}
.program-item summary::-webkit-details-marker { display: none; }
.program-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s;
}
.program-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.program-item summary strong {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.program-detail {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px dashed #eee;
    color: #666;
    line-height: 1.7;
}

.pricing-info {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.pricing-info h3 {
    margin: 0 0 1rem;
    color: var(--color-primary-dark);
}

/* --- ディバイダー --- */
.section-divider {
    padding: 4rem 0;
    background-color: #fff3e0;
    text-align: center;
}
.section-divider img {
    height: 100px;
    margin-bottom: 1rem;
}
.section-divider p {
    font-weight: bold;
    color: #e65100;
    font-size: 1.1rem;
}

/* --- BCP支援 (Packages) --- */
.bcp-details {
    padding: 5rem 0;
    background-color: #fff;
}
.bcp-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.package-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* おすすめパッケージ */
.package-card.featured {
    border: 2px solid var(--color-secondary);
    background-color: #fff8e1;
    transform: scale(1.05);
    z-index: 1;
}
@media (max-width: 900px) { .package-card.featured { transform: none; } }

.featured-label {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--color-secondary); color: #fff;
    padding: 0.3rem 1rem; border-radius: 20px;
    font-weight: bold; font-size: 0.9rem;
}

.package-card h3 {
    font-size: 1.3rem; margin: 0 0 0.5rem; color: var(--color-text);
}
.package-subtitle {
    font-size: 0.9rem; color: #666; margin-bottom: 1.5rem; font-weight: bold;
}
.package-price {
    font-family: var(--font-title); font-size: 2rem; color: var(--color-primary);
    font-weight: bold; margin-bottom: 1rem;
}
.package-description {
    font-size: 0.95rem; color: #555; flex-grow: 1;
}

.package-bundle {
    background: #333; color: #fff;
    padding: 3rem; border-radius: 12px;
    text-align: center; max-width: 800px; margin: 0 auto;
}
.package-bundle h3 { font-size: 1.8rem; margin: 0 0 1rem; }
.bundle-price {
    font-family: var(--font-title); font-size: 3rem; color: var(--color-secondary); font-weight: bold;
}
