@charset "UTF-8";

/* フォント設定（Google FontsはHTMLで読み込みますが、適用はここで行います） */
body {
    font-family: "Noto Sans JP", sans-serif;
}
.font-en {
    font-family: "Oswald", sans-serif;
}

/* ロゴ画像のサイズ調整 */
.header-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* トップページ：グラデーションオーバーレイ */
.hero-overlay {
    background: linear-gradient(to right, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.6) 50%, rgba(17, 17, 17, 0.4) 100%);
}

/* タイポグラフィ調整 */
.key_message {
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
}

/* 事業紹介ページ：チャートコンテナ */
.chart-wrapper {
    position: relative;
    height: 260px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* 事業紹介ページ：リストのスタイル */
.job-list li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 0.5em;
}
.job-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 4px;
    height: 4px;
    background-color: #005bac;
    border-radius: 50%;
}