@charset "UTF-8";

body{
    padding-top: 70px!important;
}

/* Scoped Styles for Facility Standards Page */
.facility-standards-wrapper {
    --primary-color: #0056b3;
    --text-color: #555555;
    --bg-color: #f9fafb;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Outfit', sans-serif;

    font-family: var(--font-jp);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 60px;
    padding-top: 50px;
    /* Ensure some bottom spacing */
}

/* Reset for this wrapper */
.facility-standards-wrapper *,
.facility-standards-wrapper *::before,
.facility-standards-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.facility-standards-wrapper .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Title Area */
.facility-standards-wrapper .page-title-area {
    position: relative;
    text-align: center;
    margin: 60px 0 40px;
}

.facility-standards-wrapper .en-title {
    display: block;
    font-family: 'Optima', 'Segoe', 'Segoe UI', 'Candara', 'Calibri', 'Arial', sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: #E2F0EF;
    letter-spacing: 0.05em;
    line-height: 1;
    white-space: nowrap;
}

.facility-standards-wrapper .jp-title {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    font-weight: 700;
    color: #555555;
    margin: 0;
    width: 100%;
    letter-spacing: 0.05em;
}

.facility-standards-wrapper .page-intro {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Main Content */
.facility-standards-wrapper .content-section {
    background: #F2F2F2;
    box-shadow: none;
    padding: 60px 62px;
    margin-bottom: 40px;
    margin-top: 70px;
}

.facility-standards-wrapper h2 {
    font-size: 20px;
    border-left: 4px solid #5FB7AD;
    padding-left: 12px;
    margin-bottom: 24px;
    margin-top: 40px;
}

.facility-standards-wrapper h2:first-of-type {
    margin-top: 0;
}

.facility-standards-wrapper p {
    margin-bottom: 16px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .facility-standards-wrapper .container {
        padding: 0 15px;
    }

    .facility-standards-wrapper .page-title-area {
        margin: 40px 0 30px;
    }

    .facility-standards-wrapper .en-title {
        font-size: 13vw;
        /* Adjust for legibility */
    }

    .facility-standards-wrapper .jp-title {
        font-size: 1.5rem;
        width: 100%;
        top: 55%;
    }

    .facility-standards-wrapper .content-section {
        padding: 40px 20px;
        margin-top: 50px;
    }

    .facility-standards-wrapper h2 {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 16px;
    }

    .facility-standards-wrapper p {
        font-size: 14px;
        line-height: 1.7;
    }
}