/* 小学校受験適性面談サービスページ専用CSS */

.interview-service-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

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

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

/* ヒーローセクション */
.hero-section {
    position: relative;
    border-radius: 15px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.7) 0%, rgba(135, 206, 235, 0.7) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
}

/* 共通セクションスタイル */
.section-title {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #764ba2;
}

/* サービス概要セクション */
.service-overview {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

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

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-text p {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* サービス詳細セクション */
.service-details {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

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

.detail-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.detail-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.detail-card li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.detail-card li:last-child {
    border-bottom: none;
}

.detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* 予算から私立小学校をおすすめセクション */
.budget-recommendation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
}

.budget-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.budget-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.budget-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.budget-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.budget-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.budget-feature:hover {
    transform: translateY(-2px);
}

.budget-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.budget-feature-text h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.budget-feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

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

.budget-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* リモート面談全国対応セクション */
.remote-nationwide-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.remote-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.remote-image {
    flex: 1;
    max-width: 450px;
}

.remote-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.remote-text {
    flex: 1;
    max-width: 500px;
}

.remote-title {
    color: #333;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.remote-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.remote-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.remote-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4facfe;
}

.remote-icon {
    font-size: 1.5rem;
}

.remote-feature span:last-child {
    color: #333;
    font-weight: 500;
}

.remote-price-highlight {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

.price-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* 面談の流れセクション */
.interview-flow {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.flow-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    z-index: 1;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    border-left: 4px solid #667eea;
}

.step-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* 料金・お申し込みセクション */
.pricing-contact {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.pricing-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.price-card {
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 350px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.price-card.remote {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.price-card.real {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.price-details {
    text-align: left;
}

.price-details p {
    margin: 0.5rem 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

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

.contact-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.contact-item strong {
    color: #333;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0.2rem 0;
    color: #555;
}

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

.contact-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.contact-page-button {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.contact-page-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    text-decoration: none;
    color: white;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        min-width: 120px;
    }
    
    .service-overview,
    .service-details,
    .interview-flow,
    .pricing-contact,
    .remote-nationwide-section {
        padding: 2rem 1.5rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-content {
        width: 95%;
    }
    
    .remote-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* 予算セクションのレスポンシブ対応 */
    .budget-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .budget-title {
        font-size: 2rem;
    }

    .budget-features {
        gap: 15px;
    }

    .budget-feature {
        padding: 15px;
    }
    
    .remote-features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .flow-steps::before {
        left: 25px;
    }
    
    .step {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .contact-methods {
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 200px;
    }
    
    .service-overview,
    .service-details,
    .interview-flow,
    .pricing-contact {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .detail-card h3 {
        font-size: 1.2rem;
    }
    
    .flow-steps::before {
        left: 20px;
    }
    
    .step {
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .price-card {
        padding: 2rem 1.5rem;
    }
}
