/* プランチャ共通スタイル */
.plancha-common {
    font-family: 'Hiragino Sans', 'Yu Gothic UI', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
}

.plancha-common * {
    box-sizing: border-box;
}

/* Header Section */
.plancha-page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 4rem 2rem 3rem;
    text-align: center;
    margin: 0 0 4rem 0;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.plancha-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: plancha-float 20s ease-in-out infinite;
}

@keyframes plancha-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.plancha-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    position: relative;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.plancha-page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Container */
.plancha-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Section */
.plancha-section {
    padding: 4rem 0;
}

.plancha-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

/* Service Cards */
.plancha-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

@media (max-width: 768px) {
    .plancha-services-grid {
        grid-template-columns: 1fr;
    }
}

.plancha-service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.plancha-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.plancha-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plancha-service-card.coming-soon {
    background: #f9fafb;
    opacity: 0.7;
    cursor: not-allowed;
}

.plancha-service-card.coming-soon::before {
    background: #9ca3af;
}

.plancha-service-card.coming-soon:hover {
    transform: translateY(-5px);
}

.plancha-service-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.plancha-service-card.coming-soon .plancha-service-icon {
    color: #9ca3af;
}

.plancha-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.plancha-service-card.coming-soon h3 {
    color: #6b7280;
}

.plancha-service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.plancha-service-details {
    margin-bottom: 2rem;
}

.plancha-service-details h4 {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 1rem;
}

.plancha-service-details ul {
    list-style: none;
    padding: 0;
}

.plancha-service-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 1.5rem;
    color: #4b5563;
}

.plancha-service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.plancha-service-card.coming-soon .plancha-service-details li:before {
    content: "○";
    color: #9ca3af;
}

.plancha-service-pricing {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.plancha-service-pricing h4 {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 1rem;
}

.plancha-service-pricing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plancha-service-pricing li {
    padding: 0.5rem 0;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.plancha-service-pricing li:last-child {
    border-bottom: none;
}

.plancha-service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.plancha-service-link:hover {
    gap: 1rem;
    color: #2563eb;
    text-decoration: none;
}

.plancha-service-link.disabled {
    color: #9ca3af;
    cursor: not-allowed;
}

.plancha-service-link.disabled:hover {
    gap: 0.5rem;
}

.plancha-coming-soon-badge {
    background: #fbbf24;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

/* Button */
.plancha-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.plancha-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    color: white;
    text-decoration: none;
}

/* Contact Section */
.plancha-contact-section {
    background: linear-gradient(135deg, #1e293b, #374151);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0 0 0;
    border-radius: 20px 20px 0 0;
}

.plancha-contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.plancha-contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.plancha-contact-btn {
    background: white;
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.plancha-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #1e293b;
}

/* Responsive */
@media (max-width: 768px) {
    .plancha-page-header {
        padding: 3rem 1rem 2rem;
        margin: 0 0 3rem 0;
    }
    
    .plancha-page-header h1 {
        font-size: 2rem;
    }
    
    .plancha-container {
        padding: 0 1rem;
    }
    
    .plancha-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .plancha-service-card {
        padding: 1.5rem;
        max-width: none;
    }
    
    .plancha-section-title {
        font-size: 2rem;
    }
    
    .plancha-contact-section {
        padding: 3rem 1rem;
        margin: 3rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .plancha-page-header {
        padding: 2rem 1rem 1.5rem;
    }
    
    .plancha-page-header h1 {
        font-size: 1.8rem;
    }
    
    .plancha-page-header p {
        font-size: 1rem;
    }
    
    .plancha-container {
        padding: 0 1rem;
    }
    
    .plancha-service-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .plancha-service-icon {
        font-size: 2.5rem;
    }
    
    .plancha-service-card h3 {
        font-size: 1.3rem;
    }
}