@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');

body, p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.8; /* 行間を広めに */
}

/* English Text Settings */
.en-text, nav a {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

/* Headings Settings */
h1, h2, h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700; 
}

h1 {
    font-size: 3.5rem;
    line-height: 1.5 !important; /* 強制的に1.5倍 */
    letter-spacing: 0.05em;
    font-weight: 900;
    
    background: linear-gradient(90deg, #e64900, #ff9900);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.6 !important; /* ★ここを修正：詰まり解消のため1.6倍で強制 */
}

h3 {
    line-height: 1.6 !important; /* h3も念のため揃える */
}

/* Gradient Text Utility */
.text-gradient {
    background: linear-gradient(90deg, #e64900, #ff9900);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}