/* 選ばれる理由ページ専用スタイル */
.reason-page-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
}

.reason-page-section .container {
    max-width: none;
    padding: 0 20px;
    width: 100%;
}

.reason-page-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reason-page-section .section-title {
    color: #fd7e14;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.reason-page-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fd7e14, #e56b00);
    border-radius: 2px;
}

.reason-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* 理由アイテム */
.reason-item {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #fd7e14 0%, #e56b00 100%);
}

/* 理由番号 */
.reason-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fd7e14 0%, #e56b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-right: 3rem;
    position: relative;
}

.reason-number::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
}

/* メインコンテンツ */
.reason-main {
    flex: 1;
}

.reason-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.reason-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

.reason-text p {
    margin: 0;
}

/* 詳しくはこちらボタン */
.reason-link {
    margin-top: 2rem;
}

.detail-button {
    display: inline-block;
    background: linear-gradient(135deg, #fd7e14 0%, #e56b00 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    transition: left 0.3s ease;
}

.detail-button:hover::before {
    left: 100%;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .reason-page-section {
        padding: 3rem 0;
    }
    
    .reason-page-section .container {
        padding: 0 15px;
    }
    
    .reason-page-section .section-title {
        font-size: 2.2rem;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .reason-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-right: 0;
        margin-bottom: 2rem;
        align-self: center;
    }
    
    .reason-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .reason-text {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .reason-page-section .section-title {
        font-size: 1.8rem;
    }
    
    .reason-item {
        padding: 2rem 1.5rem;
    }
    
    .reason-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .reason-title {
        font-size: 1.3rem;
    }
    
    .reason-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* 大画面対応 */
@media (min-width: 1400px) {
    .reason-content {
        max-width: 1400px;
    }
    
    .reason-item {
        padding: 4rem;
    }
    
    .reason-number {
        width: 120px;
        height: 120px;
        font-size: 3rem;
        margin-right: 4rem;
    }
    
    .reason-title {
        font-size: 2rem;
    }
    
    .reason-text {
        font-size: 1.2rem;
    }
} 