/* 特定行為ページのスタイル */

/* ページヘッダー背景 */
.page-header {
    background-image: linear-gradient(to right, rgba(241, 143, 176, 0.2), rgba(148, 187, 233, 0.2));
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 特定行為説明セクション */
.specific-description-section {
    padding: 80px 0;
}

.specific-description {
    max-width: 800px;
    margin: 0 auto;
}

.specific-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.specific-highlight {
    background-color: #f9f9f9;
    border-left: 4px solid #f18fb0;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
}

.specific-highlight-title {
    font-size: 18px;
    font-weight: 600;
    color: #f18fb0;
    margin-bottom: 10px;
}

.specific-highlight p {
    margin-bottom: 10px;
}

/* メリットセクション */
.merit-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.merit-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.merit-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.merit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.merit-icon {
    width: 70px;
    height: 70px;
    background-color: #f18fb0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.merit-icon i {
    font-size: 32px;
    color: #fff;
}

.merit-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.merit-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 特定行為一覧テーブル */
.specific-act-table-section {
    padding: 80px 0;
}

.specific-act-table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.specific-act-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specific-act-table th, 
.specific-act-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specific-act-table th {
    background-color: #f18fb0;
    color: #fff;
    font-weight: 500;
}

.specific-act-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specific-act-table tr:hover {
    background-color: #f3f3f3;
}

.specific-act-category {
    font-weight: 600;
    color: #555;
    vertical-align: top;
}

/* 同意セクション */
.consent-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.consent-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.consent-title {
    font-size: 24px;
    font-weight: 600;
    color: #f18fb0;
    text-align: center;
    margin-bottom: 30px;
}

.consent-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.consent-note {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.consent-note-title {
    font-size: 16px;
    font-weight: 600;
    color: #f18fb0;
    margin-bottom: 10px;
}

.consent-note p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* お問い合わせバナー */
.contact-specific-banner {
    background-color: #f18fb0;
    padding: 50px 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    margin: 60px auto;
    max-width: 800px;
}

.contact-specific-banner-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-specific-banner-text {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-specific-btn {
    display: inline-block;
    background-color: white;
    color: #f18fb0;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-specific-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .specific-description p,
    .consent-text {
        font-size: 15px;
    }
    
    .specific-highlight-title {
        font-size: 17px;
    }
    
    .merit-card {
        min-width: 100%;
    }
    
    .merit-icon {
        width: 60px;
        height: 60px;
    }
    
    .merit-icon i {
        font-size: 28px;
    }
    
    .merit-title {
        font-size: 17px;
    }
    
    .specific-act-table th, 
    .specific-act-table td {
        padding: 12px;
        font-size: 14px;
    }
    
    .consent-title {
        font-size: 22px;
    }
    
    .contact-specific-banner-title {
        font-size: 22px;
    }
    
    .contact-specific-banner-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .specific-description p,
    .consent-text {
        font-size: 14px;
    }
    
    .specific-highlight-title {
        font-size: 16px;
    }
    
    .merit-icon {
        width: 50px;
        height: 50px;
    }
    
    .merit-icon i {
        font-size: 24px;
    }
    
    .merit-title {
        font-size: 16px;
    }
    
    .merit-text {
        font-size: 13px;
    }
    
    .specific-act-table th, 
    .specific-act-table td {
        padding: 10px;
        font-size: 13px;
    }
    
    .consent-title {
        font-size: 20px;
    }
    
    .consent-note-title {
        font-size: 15px;
    }
    
    .consent-note p {
        font-size: 13px;
    }
    
    .contact-specific-banner {
        padding: 30px 15px;
    }
    
    .contact-specific-banner-title {
        font-size: 20px;
    }
    
    .contact-specific-banner-text {
        font-size: 14px;
    }
    
    .contact-specific-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}