/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* ヘッダー */
header {
    background: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #e67e22; /* 暖色系のアクセント */
}

header h1 {
    font-size: 2rem;
    color: #e67e22;
}

/* ヒーローエリア */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1510915361894-db8b60106cb1?auto=format&fit=crop&w=1200&q=80'); /* 背景画像例 */
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background: #d35400;
}

/* コースセクション */
.courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px auto;
}

.course-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.course-card .icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.course-card h4 {
    margin-bottom: 10px;
    color: #e67e22;
}

/* 情報セクション */
.info-section {
    background: #fff;
    padding: 50px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-placeholder {
    background: #eee;
    height: 200px;
    text-align: center;
    margin-top: 15px;
}

.contact {
    background: #fdf2e9;
    padding: 30px;
    border-radius: 10px;
}

.tel {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
}

.line-btn {
    display: block;
    background: #06C755;
    color: #fff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

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

/* レスポンシブ */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
}