/* 基本スタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ヒーローセクション */
.subpage-hero {
    background: linear-gradient(rgba(42, 92, 145, 0.8), rgba(42, 92, 145, 0.8)), 
                url('https://images.unsplash.com/photo-1575505586569-646b2ca898fc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
    position: relative;
}

.subpage-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-highlight {
    font-size: 1.5rem;
    background-color: rgba(230, 126, 34, 0.9);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    margin: 15px 0 30px;
}

.hero-highlight span {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 5px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* 統計表示 */
.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 0 40px;
}

.stat-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2a5c91;
    margin-bottom: 10px;
}

.stat-value span {
    font-size: 1.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.95rem;
}

/* リードテキスト */
.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2a5c91;
    margin-bottom: 30px;
}

/* ベネフィットボックス */
.benefit-box {
    background-color: #f1f5f9;
    border-left: 5px solid #2a5c91;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.benefit-box h3 {
    color: #2a5c91;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.benefit-box i {
    margin-right: 10px;
    color: #e67e22;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.benefit-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e2e8f0;
}

.benefit-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefit-list strong {
    color: #2a5c91;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

/* 問題リスト */
.problem-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.problem-list li {
    background-color: #fff8f0;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #e67e22;
    display: flex;
    align-items: center;
}

.problem-list i {
    color: #e67e22;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* インラインCTA */
.cta-inline {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cta-inline p {
    margin: 0;
    font-size: 1.1rem;
    color: #2a5c91;
}

.cta-inline strong {
    color: #e67e22;
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* セクションタイトル */
.section-subtitle {
    color: #2a5c91;
    font-size: 1.2rem;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

/* 障害年金タイプリスト */
.pension-type-list {
    display: grid;
    gap: 30px;
}

.pension-type-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.pension-type-item.highlight {
    border: 2px solid #e67e22;
}

.pension-type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pension-header {
    background-color: #2a5c91;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.pension-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
}

.pension-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 5px 0 0;
}

.pension-amount {
    background-color: #e67e22;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    text-align: right;
    line-height: 1.5;
}

.amount-large {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 3px;
}

.pension-body {
    padding: 25px;
}

.pension-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.highlight-item {
    background-color: #f8fafc;
    border-left: 4px solid #2a5c91;
    padding: 15px;
    border-radius: 0 5px 5px 0;
}

.highlight-label {
    display: block;
    font-weight: bold;
    color: #2a5c91;
    font-size: 0.9rem;
}

.highlight-value {
    display: block;
    font-size: 1.2rem;
    color: #e67e22;
    font-weight: bold;
    margin-top: 5px;
    line-height: 1.4;
}

.feature-list {
    margin: 20px 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    color: #64748b;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "•";
    color: #2a5c91;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.inline-cta {
    display: inline-block;
    background-color: #f1f5f9;
    color: #2a5c91;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.inline-cta:hover {
    background-color: #2a5c91;
    color: white;
}

/* ノートボックス */
.note-box {
    background-color: #fff8f0;
    border-left: 4px solid #e67e22;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.note-box p {
    margin: 0;
    color: #5f3e1d;
}

/* 障害等級テーブル */
.disability-level-table {
    overflow-x: auto;
    margin: 30px 0;
}

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

.disability-level-table th,
.disability-level-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.disability-level-table th {
    background-color: #f1f5f9;
    color: #2a5c91;
    font-weight: bold;
}

.disability-level-table tr:hover {
    background-color: #f8fafc;
}

.price-cell {
    color: #e67e22;
    font-weight: bold;
}

/* 症例グリッド */
.case-examples {
    margin: 40px 0;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.case-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.case-item i {
    font-size: 2rem;
    color: #2a5c91;
    margin-bottom: 15px;
}

.case-item h4 {
    color: #2a5c91;
    margin: 10px 0;
}

.case-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* 書類グリッド */
.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.document-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    transition: all 0.3s;
}

.document-item.important {
    border: 2px solid #e67e22;
}

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.doc-icon {
    font-size: 2rem;
    color: #2a5c91;
    margin-right: 20px;
    align-self: center;
}

.doc-content {
    flex: 1;
}

.doc-content h3 {
    color: #2a5c91;
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.doc-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.doc-importance {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 10px;
}

.document-note {
    background-color: #fff8f0;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.document-note i {
    color: #e67e22;
    font-size: 1.5rem;
    margin-right: 15px;
}

.document-note strong {
    color: #5f3e1d;
}

/* プロセスステップ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.step-number {
    background-color: #2a5c91;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #2a5c91;
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: #64748b;
    margin: 0 0 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-cta {
    display: inline-block;
    background-color: #f1f5f9;
    color: #2a5c91;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s;
}

.step-cta:hover {
    background-color: #2a5c91;
    color: white;
}

/* FAQリスト */
.faq-list {
    border-top: 1px solid #e2e8f0;
    margin: 30px 0;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.faq-question {
    color: #2a5c91;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #e67e22;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: #64748b;
    line-height: 1.6;
}

.faq-answer.show {
    display: block;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 10px 0;
}

.faq-answer li {
    margin-bottom: 8px;
}

.urgent-note {
    background-color: #fff8f0;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.urgent-note i {
    color: #e67e22;
    margin-right: 10px;
    font-size: 1.2rem;
}

.urgent-note strong {
    color: #5f3e1d;
}

/* FAQ CTA */
.faq-cta {
    background-color: #f1f5f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.faq-cta p {
    margin: 0 0 20px;
    font-size: 1.1rem;
    color: #2a5c91;
}

/* CTAセクション */
.cta-section {
    background-color: #2a5c91;
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0 30px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
}

.feature-item i {
    color: #e67e22;
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    min-width: 200px;
}

.cta-button.large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.cta-button.phone {
    background-color: #4CAF50;
    color: white;
}

.cta-button.phone:hover {
    background-color: #3d8b40;
}

.cta-button i {
    margin-right: 10px;
}

.contact-info {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.contact-info i {
    margin-right: 10px;
}

/* サイドバー */
.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    color: #2a5c91;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}

.sidebar-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-widget a {
    color: #2a5c91;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.sidebar-widget a i {
    margin-right: 8px;
    color: #e67e22;
}

.sidebar-widget a:hover {
    color: #e67e22;
}

.contact-box {
    background-color: #2a5c91;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-box.urgent {
    background-color: #e74c3c;
}

.contact-box h3 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box h3 i {
    margin-right: 10px;
}

.contact-box p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-button.urgent-btn {
    background-color: white;
    color: #e74c3c;
    font-weight: bold;
}

.cta-button.urgent-btn:hover {
    background-color: #f1f5f9;
}

.urgent-info {
    margin-top: 15px;
    font-size: 0.9rem;
}

.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
    color: white;
}

.countdown span {
    background-color: rgba(0,0,0,0.2);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 5px;
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .subpage-hero {
        padding: 80px 20px;
    }
    
    .subpage-hero h1 {
        font-size: 2rem;
    }
    
    .hero-highlight {
        font-size: 1.2rem;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
    }
    
    .pension-highlight {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .subpage-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .pension-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pension-amount {
        margin-top: 15px;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .subpage-hero {
        padding: 60px 20px;
    }
    
    .subpage-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-highlight {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .content-main {
        padding: 20px;
    }
    
    .document-grid {
        grid-template-columns: 1fr;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}