/* ========================================
    ページヘッダー
======================================== */
.page-header {
    padding: 40px 20px;
    text-align: center;
}

.page-header__title {
    color: #46A9EB;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-header__subtitle {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.page-header__description {
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* タブレット */
@media screen and (min-width: 768px) {
    .page-header {
        padding: 50px 20px;
    }
    
    .page-header__title {
        font-size: 28px;
    }
    
    .page-header__subtitle {
        font-size: 17px;
    }
    
    .page-header__description {
        font-size: 15px;
    }
}

/* PC */
@media screen and (min-width: 1024px) {
    .page-header {
        padding: 60px 20px;
    }
    
    .page-header__title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .page-header__subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .page-header__description {
        font-size: 16px;
        max-width: 1000px;
    }
}

/* ========================================
    虐待防止への取り組み
======================================== */
.prevention {
    padding: 40px 0;
}

.prevention__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.prevention__title {
    color: #46A9EB;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.prevention__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

/* 組織図 */
.prevention__structure {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.prevention__structure-title {
    width: 100%;
    padding: 15px;
    border-left: 4px solid #46A9EB;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.prevention__chart {
    width: 100%;
    text-align: center;
}

.prevention__chart-img {
    max-width: 100%;
    height: auto;
}

/* 虐待防止委員会の目的 */
.prevention__goals {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prevention__goals-title {
    width: 100%;
    padding: 15px;
    border-left: 4px solid #46A9EB;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.prevention__goals-list {
    list-style: none;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.prevention__goals-item p {
    font-size: 14px;
    line-height: 1.5;
}

/* マネージャーの役割 */
.prevention__manager {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prevention__manager-title {
    width: 100%;
    padding: 15px;
    border-left: 4px solid #46A9EB;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.prevention__manager-list {
    list-style: none;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.prevention__manager-item p {
    font-size: 14px;
    line-height: 1.5;
}

/* 関係法令 */
.prevention__committee {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prevention__committee-title {
    width: 100%;
    padding: 15px;
    border-left: 4px solid #46A9EB;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.prevention__committee-list {
    list-style: none;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.prevention__committee-item p {
    font-size: 14px;
    line-height: 1.5;
}

/* タブレット */
@media screen and (min-width: 768px) {
    .prevention {
        padding: 60px 0;
    }
    
    .prevention__container {
        gap: 40px;
    }
    
    .prevention__title {
        font-size: 26px;
    }
    
    .prevention__structure-title,
    .prevention__goals-title,
    .prevention__manager-title,
    .prevention__committee-title {
        font-size: 17px;
        padding: 20px;
    }
    
    .prevention__goals-item p,
    .prevention__manager-item p,
    .prevention__committee-item p {
        font-size: 15px;
    }
}

/* PC */
@media screen and (min-width: 1024px) {
    .prevention {
        padding: 80px 0;
    }
    
    .prevention__container {
        max-width: 1200px;
        gap: 50px;
    }
    
    .prevention__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .prevention__structure-title,
    .prevention__goals-title,
    .prevention__manager-title,
    .prevention__committee-title {
        font-size: 18px;
        padding: 25px;
    }
    
    .prevention__goals-list,
    .prevention__manager-list {
        gap: 20px;
    }
    
    .prevention__committee-list {
        gap: 20px;
    }
}

/* ========================================
    BCP（業務継続計画）
======================================== */
.bcp {
    padding: 40px 0;
}

.bcp__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.bcp__title {
    color: #46A9EB;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.bcp__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #5CB3E6;
}

.bcp__description {
    color: #000;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    max-width: 800px;
}

/* 計画カード */
.bcp__plans {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bcp__plan {
    width: 100%;
}

.bcp__plan-title {
    padding: 15px;
    background: #2A6EBB;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.bcp__plan-content {
    padding: 20px;
    border: 1px solid #2A6EBB;
    background: #FFF;
}

.bcp__plan-description {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

/* 業務継続体制 */
.bcp__details {
    width: 100%;
}

.bcp__details-title {
    padding: 15px;
    border-left: 4px solid #46A9EB;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* テーブル */
.bcp-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    overflow-x: auto;
    display: block;
}

.bcp-table__head {
    background: #2A6EBB;
}

.bcp-table__header {
    padding: 10px 15px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.bcp-table__body {
    background: #ffffff;
}

.bcp-table__row {
    border-bottom: 1px solid #D6D6D6;
}

.bcp-table__cell {
    padding: 10px 15px;
    border: 1px solid #D6D6D6;
    font-size: 13px;
    line-height: 1.5;
}

.bcp-table__cell--label {
    text-align: center;
    font-weight: 500;
    background: #f8f9fa;
}

.bcp-table__cell--merged {
    text-align: center;
}

.bcp-table__cell--data {
    text-align: left;
}

/* タブレット */
@media screen and (min-width: 768px) {
    .bcp {
        padding: 60px 0;
    }
    
    .bcp__container {
        gap: 40px;
    }
    
    .bcp__title {
        font-size: 26px;
    }
    
    .bcp__description {
        font-size: 15px;
    }
    
    .bcp__plans {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .bcp__plan {
        flex: 1;
        max-width: 500px;
    }
    
    .bcp__plan-title {
        font-size: 17px;
        padding: 20px;
    }
    
    .bcp__plan-content {
        padding: 25px;
        min-height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .bcp-table {
        display: table;
    }
    
    .bcp__details-title {
        font-size: 17px;
        padding: 20px;
    }
}

/* PC */
@media screen and (min-width: 1024px) {
    .bcp {
        padding: 80px 0;
    }
    
    .bcp__container {
        max-width: 1200px;
        gap: 50px;
    }
    
    .bcp__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .bcp__description {
        font-size: 16px;
        max-width: 900px;
    }
    
    .bcp__plans {
        gap: 40px;
    }
    
    .bcp__plan-title {
        font-size: 18px;
        padding: 25px;
    }
    
    .bcp__plan-content {
        padding: 30px;
        min-height: 140px;
    }
    
    .bcp__plan-description {
        font-size: 15px;
    }
    
    .bcp__details-title {
        font-size: 18px;
        padding: 25px;
    }
    
    .bcp-table__header {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .bcp-table__cell {
        padding: 15px 20px;
        font-size: 14px;
    }
}