/* 夕追小学校公式サイト スタイルシート */

:root {
    --primary-blue: #0056b3;
    --secondary-green: #28a745;
    --urgent-red: #d9534f;
    --bg-light: #f4f7f6;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.6;
}

#wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
    padding: 20px;
    border-bottom: 3px solid var(--primary-blue);
    display: flex;
    align-items: center;
}

#school-logo {
    width: 100px;
    height: 100px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

header h1 {
    margin: 0;
    font-size: 1.8em;
    color: var(--primary-blue);
}

nav {
    background-color: #eee;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.9em;
}

nav a:hover {
    color: var(--primary-blue);
}

/* 緊急告知バナー */
#urgent-notif {
    background-color: var(--urgent-red);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

#main-visual {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.5em;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/HeroSection.png');
    background-size: cover;
    background-position: center;
}

#container {
    display: flex;
    padding: 20px;
}

main {
    flex: 3;
    padding-right: 20px;
}

aside {
    flex: 1;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.news-box {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.news-box h2 {
    margin-top: 0;
    font-size: 1.2em;
    border-bottom: 2px solid var(--secondary-green);
    display: inline-block;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
    font-size: 0.9em;
}

.news-date {
    color: #888;
    margin-right: 10px;
}

footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
}

/* 捜索届詳細用 */
.missing-report {
    border: 2px solid var(--urgent-red);
    padding: 20px;
    margin-top: 20px;
}

.missing-photo {
    width: 200px;
    height: 250px;
    background-color: #eee;
    float: left;
    margin-right: 20px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}
