.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--section-spacing) 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 60px;
    position: relative;
    color: var(--text-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

.section-title .subtitle {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 10px;
    letter-spacing: 0.1em;
}

/* Base Content Block styling used in company/message pages */
.content-block-box {
    background-color: var(--white);
    padding: 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    margin-bottom: 40px;
    position: relative;
}

@media (max-width: 768px) {
    .content-block-box {
        padding: 40px 20px;
    }
}