@charset "utf-8";

/* ========================================
   Page Header Image - 全ページ共通ヘッダー画像
   レスポンシブ対応、PC/SP画像自動切り替え
======================================== */

/* ========================================
   基本レイアウト
======================================== */
.page-header-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    margin: 0;
}

/* 画像背景 */
.page-header-image .header-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* コンテンツエリア */
.page-header-image .header-content {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 50px;
    box-sizing: border-box;
}

/* 見出し */
.page-header-image .headline {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 32px;
    line-height: 1.4;
    color: #fff;
    background: none !important;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header-image .headline span {
    display: inline-block;
}

/* オーバーレイ */
.page-header-image .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* ========================================
   PC表示 (651px以上)
   アスペクト比: 3.4:1 (3800px / 1120px)
======================================== */
@media screen and (min-width: 651px) {
    .page-header-image {
        aspect-ratio: 3.4 / 1;
        /* 3800 / 1120 = 3.392857... ≈ 3.4 */
        min-height: 300px;
        /* 最小高さを確保 */
    }
}

/* ========================================
   タブレット表示 (651px - 950px)
======================================== */
@media screen and (min-width: 651px) and (max-width: 950px) {
    .page-header-image .headline {
        font-size: 28px;
    }

    .page-header-image .header-content {
        padding: 0 40px;
    }
}

/* ========================================
   モバイル表示 (650px以下)
   アスペクト比: 2.08:1 (1125px / 540px)
======================================== */
@media screen and (max-width: 650px) {
    .page-header-image {
        aspect-ratio: 2.08 / 1;
        /* 1125 / 540 = 2.083333... ≈ 2.08 */
        min-height: 200px;
        /* 最小高さを確保 */
        margin: 0 0 10px 0;
    }

    /* 見出しを非表示 */
    .page-header-image .pc-only {
        display: none !important;
    }

    .page-header-image .header-content {
        padding: 0 20px;
    }
}

/* ========================================
   画像読み込み中のプレースホルダー
======================================== */
.page-header-image .header-image-bg:empty {
    background-color: #f5f5f5;
}

/* ========================================
   印刷時の対応
======================================== */
@media print {
    .page-header-image {
        aspect-ratio: auto;
        height: 200px;
        page-break-inside: avoid;
    }

    .page-header-image .overlay {
        display: none;
    }
}