/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.9
*/

/* 1. ページタイトル・ヘッダー・キャッチフレーズの強制非表示 */
.page .entry-header, 
.page .entry-title, 
h1.entry-title,
.site-description-custom {
    display: none !important;
}

/* 2. アプリフォーム全体の余白調整 */
.carbon-pdf-wrapper {
    margin-top: 20px !important;
}

/* 3. h3見出し（2行の体裁を維持しつつ画面幅で縮小） */
.carbon-pdf-wrapper h3 {
    display: block !important;
    text-align: center !important;
    line-height: 1.4 !important;
    
    /* 改行を維持する設定 */
    white-space: pre-line !important; 
    
    /* 画面幅に合わせて自動縮小（最小14px、最大24pxの間で動く） */
    font-size: clamp(14px, 4.5vw, 24px) !important;
    
    /* 単語の途中で勝手に改行させない */
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    
    margin: 15px 0 !important;
    padding: 0 10px !important;
}

/* 4. 極小画面（iPhone SEなど）での追い調整 */
@media (max-width: 380px) {
    .carbon-pdf-wrapper h3 {
        /* スマホ幅に合わせてさらに縮小比率を上げる */
        font-size: 4.2vw !important;
        letter-spacing: -0.02em !important;
    }
}