@media print {
    /* 途中で改ページされたくない要素にこのスタイルを適用します */
    .no-break {
        break-inside: avoid;
        page-break-inside: avoid; /* 古いブラウザのためのフォールバック */
    }

    /* 例: 特定のdivや記事セクション全体など */
    .container{
        break-inside: avoid;
        page-break-inside: avoid;
    }
}


/* ============================================
   ベーススタイル（共通コンポーネント）
   ============================================ */

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクションタイトル */
.section-title {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 20px;
}

.title-en {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #4CAF50;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.title-ja {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 10px;
}

.title-ja::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50 0%, #ffda76 100%);
    border-radius: 2px;
}





