/* 固定ページ共通のヒーローセクションスタイル */
.page-hero {
    position: relative;
    width: 100%;
}

.page-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2;
}

.page-subheading {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.page-title {
    font-family: var(--font-melvinsans);
    font-size: 60px;
    font-weight: 100;
    letter-spacing: 0.1em;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .page-hero-image {
        height: 300px;
    }

    .page-title {
        font-size: 48px;
    }
}

@media screen and (max-width: 767px) {
    .page-hero-image {
        height: 250px;
    }

    .page-subheading {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .page-title {
        font-size: 36px;
    }
}