/* すっきりとしたモダンデザイン */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #333333;
}

/* ヘッダー */
header {
    background: #111;
    color: white;
    padding: 20px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}
header h1 {
    margin: 0;
    font-size: 24px;
}
nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
}
nav a:hover {
    text-decoration: underline;
}

/* ヒーローセクション */
.hero {
    background: url('https://images.unsplash.com/photo-1637073849563-5b0ac780ec34?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

/* 会社概要セクション */
.about {
    padding: 60px 20px;
    text-align: center;
}
.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.card {
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 250px;
}
.card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* フッター */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
