@charset "UTF-8";
/* CSS Document */

/* 基本設定 */
body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.8;
}

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

/* ヘッダー */
header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ヒーローエリア */
.hero {
    height: 60vh;
    background-color: #f8f9fa; /* ここに画像を入れるとよりSUNELAN風になります */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* セクションタイトル */
.section-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.2em;
}

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

.card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
}

.bg-light {
    background-color: #fafafa;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    border-top: 1px solid #eee;
}