/* セクションタイトル */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}

/* ヒーローセクション */
.company-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.company-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.5); */
}

.company-hero .container {
    position: relative;
    z-index: 1;
}

.company-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.company-lead {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.8;
}

.container {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.company-hero .container {
    position: relative;
    z-index: 1;
}

/* ページ全体のレイアウト */
.content-wrapper {
    max-width: 1200px;
    margin: 3rem auto 8rem;
    /* 上のマージンを減らしてヒーローセクションとの間隔を調整 */
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .company-hero {
        height: 30vh;
    }

    .company-hero .container {
        border-radius: 0px;
    }
}
