@charset   "Shift_JIS";
/* --- 1. 基本設定（SEO・読みやすさ重視） --- */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fcfcfc;
}

/* --- 2. ヘッダー：木漏れ日の画像とタイトル --- */
header {
    /* 画像のURL。ご自身で用意されるか、私に作成依頼をしてください */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), 
        url('komorebi.png'); 
    
    background-size: cover;
    background-position: center;
    padding: 100px 0; /* 写真の表情を出すために少し高さを確保 */
    text-align: center;
    box-shadow: inset 0 0 50px rgba(255,255,255,0.5); /* 内側に柔らかな光を演出 */
}

header h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 500;
}

header h1 a {
    color: #2c3e50; /* 濃いめのグレーで可読性を確保 */
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9); /* 文字を背景から浮かせる */
    letter-spacing: 0.05em;
}

/* --- 3. メインコンテンツ --- */
main {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 25px;
}

h2 {
    border-left: 5px solid #a8c69f; /* 木漏れ日に合わせた淡いグリーン系のアクセント */
    padding: 8px 0 8px 18px;
    margin-top: 50px;
    font-size: 1.6rem;
}

h3 {
    margin-top: 35px;
    color: #555;
    font-size: 1.3rem;
}

p {
    margin-bottom: 25px;
}

/* --- 4. フッター：目立たないリンク --- */
footer {
    margin-top: 80px;
    padding: 50px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999; /* 淡い色にして目立たせない */
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #666;
    text-decoration: underline;
}

.copyright {
    color: #ccc;
    font-size: 0.75rem;
}

/* --- 5. レスポンシブ対応 --- */
@media (max-width: 600px) {
    header {
        padding: 60px 0;
    }
    header h1 {
        font-size: 1.6rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}