/* ページヘッダー */
.page-header {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.header-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-image h1 {
    position: absolute;
    top: 10%;
    left: 28%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.4rem;
    font-weight: bold;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    border-top: 3px solid #92bb44;
    width: 400px; /* 線の横幅を指定 */
    text-align: left; /* テキストを中央揃え */
    padding: 0 50px 0;
}

.header-image p {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;          
    text-align: left;
}

@media (max-width: 768px) {
    .header-image h1 {
        font-size: 24px;
        width: 150px;
        left: 30%;
        top: 20%;
        padding-left: 10px;
    }


    .header-image p {
        font-size: 18px;
        width: 300px; /* 線の横幅を指定 */
        left: 50%;
        top: 55%;
    }
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
}

.operator-content {
    padding: 20px 10px;
}

/* h2の黒文字と緑の下線 */
.operator-content h2 {
    color: #000; /* 黒文字 */
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px; /* 下線との距離調整 */
}

.operator-content h2::after {
    content: '';
    display: block;
    width: 100%; /* 下線の幅を全体に調整 */
    height: 3px; /* 下線の太さ */
    background-color: #92bb44; /* 緑色の下線 */
    margin-top: 5px; /* h2と下線の間隔 */
    margin-left: 0;
}

/* h3の緑色設定 */
.operator-content h3 {
    color: #92bb44; /* 緑文字 */
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* メインコンテンツ */
.operator-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 auto;
}

/* セクションスタイル */
.operator-section {
    margin-bottom: 30px;
}
