/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ヘッダー */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 24px;
    color: #f38020; /* Cloudflare風のオレンジカラー */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #f38020;
}

/* ヒーローセクション（見えにくかった部分の修正） */
.hero {
    background: #ffffff; /* 背景を白ベースに統一 */
    border-bottom: 1px solid #e0e0e0;
    color: #333333; /* 文字色を濃いグレーにして視認性を確保 */
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #555555; /* サブタイトルもはっきり見える濃さに */
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ボタンのデザイン変更 */
.btn {
    display: inline-block;
    background: #f38020; /* ボタンをオレンジにして目立たせる */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(243, 128, 32, 0.2);
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #e27313;
    transform: translateY(-1px);
}

/* メインコンテンツ */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    border-left: 5px solid #f38020;
    padding-left: 10px;
    color: #111111;
}

/* グリッドレイアウト */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #eee;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #111111;
}

.card p {
    color: #555555;
    font-size: 15px;
}

/* フッター */
footer {
    background: #1e1e20;
    color: #aeaeaf;
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
    font-size: 14px;
}
