/* ヒーローセクション */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('https://ses-media.jp/img/top1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* 背景を暗くするオーバーレイ */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* コンテンツコンテナ */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    padding: 40px;
    color: #ffffff;
}

/* タイトル */
.hero-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* テキストエリア */
.hero-text {
    text-align: left;
    line-height: 1.9;
    font-size: 16px;
}

.hero-text p {
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-text strong {
    font-weight: bold;
    font-size: 17px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 40px 15px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-text p {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-text {
        font-size: 14px;
    }
}