
/* リセット・基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* ヘッダー */
.service-header {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 3px solid #537f19;
    margin-bottom: 30px;
}

.service-title {
    font-size: 28px;
    color: #537f19;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.service-company {
    font-size: 14px;
    color: #888;
}

/* メインコンテンツ */
.service-content {
    max-width: 1025px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション共通 */
section {
    background: #fff;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 22px;
    color: #537f19;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
}

/* 3つのポイント */
.key-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.key-point {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.point-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #537f19;
}

.point-desc {
    font-size: 14px;
    color: #666;
}

/* 料金セクション */
.pricing-box {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.main-pricing {
    margin-bottom: 15px;
}

.main-price-amount {
    font-size: 32px;
    font-weight: bold;
    color: #537f19;
}

.main-price-note {
    font-size: 16px;
    color: #666;
}

.initial-pricing {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.initial-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.contract-note {
    font-size: 12px;
    color: #888;
}

/* リスト共通 */
ul {
    list-style: none;
}

.included-list,
.target-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.included-item,
.target-item {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 4px;
    border-left: 4px solid #537f19;
    font-size: 14px;
}

/* 制作の流れ */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: #537f19;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.step-content p {
    font-size: 14px;
    color: #666;
}

/* 比較セクション */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-item {
    padding: 20px;
    border-radius: 6px;
}

.comparison-item.old {
    background: #f5f5f5;
    border: 2px solid #ddd;
}

.comparison-item.new {
    background: #e8f4fd;
    border: 2px solid #537f19;
}

.comparison-item h4 {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
}

.comparison-item ul {
    list-style: disc;
    padding-left: 20px;
}

.comparison-item li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* 特典セクション */
.bonus-box {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #ffc107;
}

.bonus-title {
    font-size: 20px;
    color: #856404;
    margin-bottom: 10px;
}

.bonus-desc {
    font-size: 14px;
    color: #856404;
    margin-bottom: 15px;
}

.bonus-reward {
    margin-bottom: 10px;
}

.reward-amount {
    font-size: 28px;
    font-weight: bold;
    color: #dc3545;
}

.reward-note {
    font-size: 16px;
    color: #856404;
}

.bonus-note {
    font-size: 12px;
    color: #6c757d;
}

/* 保証セクション */
.guarantee-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.guarantee-item {
    background: #ffeded;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #e73d3d;
}

.guarantee-item h4 {
    font-size: 16px;
    color: #155724;
    margin-bottom: 8px;
}

.guarantee-item p {
    font-size: 14px;
    color: #155724;
}

/* まとめセクション */
.summary-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.summary-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
}

.cta-area {
    margin-top: 20px;
}

.cta-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #537f19;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-btn.primary {
    background: #537f19;
    color: white;
}

.cta-btn.primary:hover {
    background: #005a99;
}

.cta-btn.secondary {
    background: #6c757d;
    color: white;
}

.cta-btn.secondary:hover {
    background: #545b62;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-content {
        padding: 0 15px;
    }
    
    section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .key-points-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .guarantee-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .main-price-amount {
        font-size: 28px;
    }
}
/* ローディングアニメーション */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #537f19;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}