/*
Theme Name: Hibikinomori Theme
Theme URI: 
Author: Your Name
Author URI: 
Description: ひびきのもり 児童発達支援事業所 オリジナルテーマ
Version: 1.0.0
License: 
License URI: 
Text Domain: hibikinomori
*/

/* =========================================
   基本設定 (Base)
========================================= */
:root {
    --color-primary: #75A975; 
    --color-secondary: #F6E5A0; 
    --color-text: #4A4036; 
    --color-bg: #FDFBF7; 
    --color-white: #FFFFFF;
    --color-accent: #E88B7D; 
    --color-light-green: #EAF2EA; 
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
    color: var(--color-primary);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* 英語サブタイトル付きのセクションタイトル */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-en {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.section-title-ja {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
}

/* 共通ボタンデザイン */
.btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(117, 169, 117, 0.3);
    text-align: center;
}

.btn:hover {
    background-color: var(--color-text);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* 画像プレースホルダー */
.img-placeholder {
    background-color: #EAE5DB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: bold;
    border-radius: 20px;
    border: 2px dashed #C9C4B9;
    width: 100%;
}