/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* 資料の白を基調に、少しだけ柔らかく */
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー */
header {
    background-color: #E60012; /* 資料の赤 */
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

.header-logo {
    max-height: 70px; /* ロゴの高さを指定 */
    width: auto;      /* 高さに合わせて幅を自動調整 */
}

header h1 {
    margin: 0;
    font-size: 2.0em;
    letter-spacing: 2px;
}

header p {
    margin: 5px 0 0;
    font-size: 1.0em;
}

/* ヒーローセクション（ファーストビュー） */
.hero {
    background: url('images/rangex_background.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 画像の視認性を高めるためのオーバーレイ */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.8em; /* 大きめのフォントでインパクトを */
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    display: inline-block;
    background-color: #E60012; /* メインの赤 */
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #CC0000; /* ホバーで少し濃い赤に */
}

/* 各セクション共通スタイル */
.section {
    background-color: #fff;
    padding: 25px 20px 40px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 少し影をつけて立体感 */
    border-left: 5px solid #E60012; /* 資料の赤をアクセントに */
}

.section h3 {
    font-size: 2.2em;
    color: #E60012; /* セクションタイトルも赤で統一 */
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #E60012;
    margin: 10px auto 0;
}

.section p {
    font-size: 1.0em;
    margin-bottom: 15px;
    text-align: left;
}

.section ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px; /* リストのマーク分のスペース */
}

.section ul li::before {
    content: '✔️'; /* チェックマークの絵文字 */
    position: absolute;
    left: 0;
    color: #E60012; /* チェックマークの色を赤に */
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.0em;
    }
    .hero p {
        font-size: 1.2em;
    }
    .section h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }
    .hero h2 {
        font-size: 1.6em;
    }
    .hero p {
        font-size: 1.0em;
    }
    .hero .btn {
        font-size: 1.0em;
        padding: 12px 25px;
    }
    .section h3 {
        font-size: 1.5em;
    }
    .section {
        padding: 30px 15px;
    }
}