/*
Theme Name: Ruggy Guitar Theme
Theme URI: http://example.com/ruggy-guitar
Author: Gemini
Description: ラギーギター教室のための、猫と水彩テイストのオリジナルテーマ
Version: 1.0
*/

/* Google Fonts (手書き風フォント) */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap');

:root {
    --bg-color: #FDFAF4;
    --text-color: #5D5D5D;
    --primary-color: #FF9AA2; /* パステルピンク */
    --accent-blue: #C7CEEA;   /* パステルブルー */
    --accent-yellow: #FAF8D4; /* パステルイエロー */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Zen Maru Gothic', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

/* ヘッダー装飾 */
.site-header {
    background: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 5px solid var(--accent-blue);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.site-title a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #FF9AA2, #C7CEEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ナビゲーション */
.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* メインコンテンツ */
.site-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.hero-area {
    text-align: center;
    margin-bottom: 50px;
}

.hero-area img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* セクション共通 */
section {
    background: #fff;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    position: relative;
    border: 2px dashed var(--accent-blue);
}

h2.section-title {
    text-align: center;
    color: #6B7A8F;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

h2.section-title::before, h2.section-title::after {
    content: '♪';
    color: var(--primary-color);
    margin: 0 10px;
}

/* ボタン */
.btn {
    display: inline-block;
    background: linear-gradient(45deg, #FF9AA2, #FFB7B2);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

/* フッター */
.site-footer {
    background: var(--accent-blue);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}