/* ==========================================================================
   【子供向けデザイン】汎用スタイルシート
   ========================================================================== */

/* ===== CSS変数定義 (カラーパレット) ===== */
:root {
    --color-primary: #FFD54F;      /* メインの明るいイエロー */
    --color-primary-dark: #FFC107; /* 少し濃いイエロー (ホバー用) */
    --color-accent: #81D4FA;       /* アクセントの水色 */
    --color-accent-dark: #4FC3F7;  /* 濃い水色 */
    --color-background: #FFFDE7;   /* 全体の背景色 (ごく薄いクリーム) */
    --color-surface: #FFFFFF;      /* カードなどの表面色 (白) */
    --color-text: #6D4C41;         /* メインテキスト (温かいブラウン) */
    --color-heading: #5D4037;      /* 見出し (濃いブラウン) */
    --color-border: #F5E9D4;       /* 境界線 */
    --font-body: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    --font-heading: 'Kiwi Maru', serif;
}

/* ===== 基本設定 ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    margin: 0;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== タイポグラフィ ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-accent-dark);
}

.text-center {
    text-align: center;
}

.small-text {
    font-size: 0.85rem;
    color: #888;
}

/* ===== ヘッダー ===== */
.header {
    background-color: var(--color-surface);
    border-bottom: 2px dashed var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-heading);
    text-decoration: none;
}
.header-logo:hover {
    color: var(--color-primary-dark);
}

.header-nav { display: none; }
.header-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 1.5rem; }
.header-nav a { color: var(--color-text); font-weight: 700; font-size: 0.9rem; }

/* ===== ボタン ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-heading);
}
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-heading);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.btn-lg {
    font-size: 1.15rem;
    padding: 1.2rem 3rem;
}

.btn-secondary {
    background-color: var(--color-surface);
    color: var(--color-heading);
    border-color: var(--color-border);
}
.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-surface);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.header-nav .btn-primary-outline {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    padding: 0.5rem 1.25rem;
    box-shadow: none;
}
.header-nav .btn-primary-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-heading);
}

/* ===== ヒーローセクション ===== */
.hero {
    /* background-color: var(--color-accent); */
    /* background-image: linear-gradient(135deg, var(--color-accent) 0%, #aae2fa 100%); */
    background-image: url('../images/HP-illust.png'); /* 背景画像を指定 */
    background-size: cover; /* 要素全体を覆うように画像を拡大・縮小 */
    background-position: center; /* 画像の中央が常に表示されるようにする */
    background-repeat: no-repeat; /* 画像の繰り返しを無効化 */
    color: var(--color-surface);
    padding: 5rem 0;
    padding-bottom: 4rem;
    text-align: center;
}

.hero-title {
    color: #fff;
    font-size: 2.8rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    word-wrap: break-word;
    word-break: auto-phrase;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 3.5rem;
    word-wrap: break-word;
    word-break: auto-phrase;
}

/* ===== 汎用セクション ===== */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-image: linear-gradient(to right, var(--color-primary) 50%, var(--color-accent) 50%);
    border-radius: 2px;
}

/* ===== 特徴セクション ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.card {
    background-color: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease-in-out;
    text-align: center;
}
.card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 24px rgba(141, 110, 99, 0.15);
    border-color: var(--color-primary);
}

.card-title {
    font-size: 1.4rem;
    color: var(--color-accent-dark);
    margin-bottom: 1rem;
}

.card-text {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== CTAセクション ===== */
.cta-section {
    background-color: var(--color-surface);
    border-top: 2px dashed var(--color-border);
    border-bottom: 2px dashed var(--color-border);
}
.contact-info {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.contact-link {
    display: inline-block;
    background-color: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 1rem 2rem;
    border-radius: 30px;
    color: var(--color-text);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-link:hover {
    background-color: var(--color-primary);
    color: var(--color-heading);
    border-color: var(--color-primary-dark);
    transform: scale(1.05);
}

/* ===== お知らせセクション ===== */
.news-list {
    border-top: 2px dotted var(--color-border);
}
.news-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
    border-bottom: 2px dotted var(--color-border);
    color: var(--color-text);
    text-decoration: none;
    transition: background-color 0.3s;
    border-radius: 15px;
}
.news-item:hover {
    background-color: #fff;
}

.news-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    background-color: #E1F5FE;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-right: 1.5rem;
}

.news-title {
    margin: 0;
    flex-grow: 1;
}

.news-arrow {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s;
}
.news-item:hover .news-arrow {
    transform: translateX(8px) rotate(360deg);
}

/* ===== フッター ===== */
.footer {
    background-color: var(--color-heading);
    color: var(--color-background);
    text-align: center;
    padding: 3rem 0;
    margin-top: 2rem;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.footer-nav a {
    color: var(--color-background);
    opacity: 0.8;
}
.footer-nav a:hover {
    opacity: 1;
    color: var(--color-primary);
    text-decoration: none;
}
.copyright {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== ハンバーガーメニュー (モバイル用) ===== */
/* .menu-toggle { display: block; background: transparent; border: none; padding: 0; cursor: pointer; z-index: 101; }
.hamburger-icon { display: block; width: 28px; height: 3px; background-color: var(--color-heading); border-radius: 3px; position: relative; transition: background-color 0.2s; }
.hamburger-icon::before, .hamburger-icon::after { content: ''; display: block; width: 28px; height: 3px; background-color: var(--color-heading); position: absolute; left: 0; transition: all 0.2s; border-radius: 3px; }
.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { bottom: -8px; } */


/* ===== レスポンシブ対応 ===== */
 @media (min-width: 769px) {
    .menu-toggle { display: none; }
    .header-nav { display: block; }
}
/*
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; margin-bottom: 2rem; }
    .features-grid { grid-template-columns: 1fr; }

    .header-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background-color: var(--color-surface); box-shadow: 0 5px 10px rgba(0,0,0,0.1); padding: 1rem 0; }
    .header-nav ul { flex-direction: column; gap: 0; }
    .header-nav ul li { width: 100%; text-align: center; }
    .header-nav ul li a { display: block; padding: 1rem; border-bottom: 1px solid var(--color-border); }
    .header-nav ul li:last-child a { border-bottom: none; }
    .header-nav .btn { width: 80%; margin: 1rem auto 0; }
    .header.nav-open .header-nav { display: block; }
} */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* 1セット目 */
        url('../images/music1.svg'), /* ♩ */
        url('../images/music2.svg'), /* ♪ */
        url('../images/music3.svg'), /* 🎤 */
        /* 2セット目 */
        url('../images/music1.svg'),
        url('../images/music2.svg'),
        url('../images/music3.svg'),
        /* 3セット目 */
        url('../images/music1.svg'),
        url('../images/music2.svg'),
        url('../images/music3.svg');
    background-repeat: no-repeat;
    /* サイズを小さくし、個数を増やす */
    background-size:
        3%, 2.5%, 4%, /* 1セット目 */
        3.5%, 2%, 3%, /* 2セット目 */
        4%, 3%, 2.5%; /* 3セット目 */
    /* 位置を散りばめる */
    background-position:
        10% 20%, /* 1セット目 */
        80% 30%,
        15% 85%,
        90% 10%, /* 2セット目 */
        40% 55%,
        65% 75%,
        5% 95%,  /* 3セット目 */
        95% 60%,
        50% 5%;
    opacity: 0.1;
    z-index: -1;
    /* transform: rotate(-15deg); */ /* 全体を回転させると位置がずれるため、コメントアウトまたは削除を推奨 */
}

.gentle-stripe-bg {
  background-color: #fcfcfa; /* ベースはごく薄いアイボリー */
  background-image: linear-gradient(
    to right,
    #f2f0eb 1px, /* ほんの少しだけ濃い色の線を1px */
    transparent 1px /* すぐに透明にする */
  );
  background-size: 50px 100%; /* 柄の間隔を広めにとる */
}

.soft-check-bg {
  background-color: #fffafa; /* スノーホワイトのような白 */
  background-image:
    linear-gradient(
      to bottom,
      rgba(211, 211, 211, 0.3) 1px, /* ごく薄いグレーの線を半透明で */
      transparent 1px
    ),
    linear-gradient(
      to right,
      rgba(211, 211, 211, 0.3) 1px,
      transparent 1px
    );
  background-size: 60px 60px; /* 格子を大きめに */
}

.piano-stripe-mild-bg {
  background-color: #f8f8f6; /* ごく薄いクリーム色の背景 */
  background-image: linear-gradient(
    to right,
    /* 白鍵の境界線を表現する細い線 */
    #e9e9e3 1px, transparent 1px,
    transparent 29px,
    #e9e9e3 30px,
    
    /* 黒鍵を抽象的に表現する太い線 */
    transparent 30px, transparent 40px,
    #dcdcdc 40px, #dcdcdc 55px, /* 薄いグレーの線 */
    transparent 55px, transparent 70px
  );
  background-size: 70px 100%; /* 柄の繰り返し幅 */
}

.piano-svg-mild-bg {
  background-color: #f8f8f6;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="210" height="120"><rect x="0" y="0" width="30" height="120" fill="%23f8f8f6" stroke="%23e0e0e0"/><rect x="30" y="0" width="30" height="120" fill="%23f8f8f6" stroke="%23e0e0e0"/><rect x="60" y="0" width="30" height="120" fill="%23f8f8f6" stroke="%23e0e0e0"/><rect x="90" y="0" width="30" height="120" fill="%23f8f8f6" stroke="%23e0e0e0"/><rect x="120" y="0" width="30" height="120" fill="%23f8f8f6" stroke="%23e0e0e0"/><rect x="150" y="0" width="30" height="120" fill="%23f8f8f6" stroke="%23e0e0e0"/><rect x="180" y="0" width="30" height="120" fill="%23f8f8f6" stroke="%23e0e0e0"/><rect x="20" y="0" width="20" height="75" fill="%23cccccc"/><rect x="50" y="0" width="20" height="75" fill="%23cccccc"/><rect x="110" y="0" width="20" height="75" fill="%23cccccc"/><rect x="140" y="0" width="20" height="75" fill="%23cccccc"/><rect x="170" y="0" width="20" height="75" fill="%23cccccc"/></svg>');

  /* 背景サイズを調整して鍵盤の大きさを変えられます */
  background-size: 210px 120px; 
}

.pc-text{
    display: inline;
}

.sp-text{
    display: none;
}