/* ヒーローセクション用スタイル */
.hero {
    padding: 160px 0 100px;
    background: var(--navy-gradient);
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 41, 66, 0.98), rgba(26, 41, 66, 0.4) 70%, rgba(26, 41, 66, 0.2));
    z-index: 1;
    pointer-events: none;
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.highlight {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}