:root {
    --primary-color: #005b96;
    --secondary-color: #004080;
    --text-color: #333;
    --light-text-color: #666;
}

/* グローバルスタイル */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* ヘッダー */
header {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

header h1 {
    font-size: 2em;
    margin: 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* ホームセクション */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e1e8ed;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    margin-right: 20px;
    text-align: left;
}

.hero-text h2 {
    font-size: 2em;
    color: var(--text-color);
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2em;
    color: var(--light-text-color);
}

.hero-qr {
    flex: 0 0 auto;
    text-align: center;
    margin-top: 20px;
}

.qr-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 10px;
}

/* スポンサーセクションのスタイル */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.sponsor img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.sponsor-message {
    text-align: center;
    margin-top: 20px;
}

.sponsor-message h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sponsor-message p {
    font-size: 1em;
    color: var(--light-text-color);
    margin-bottom: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: var(--secondary-color);
}

/* 各セクション */
section {
    padding: 20px;
    margin: 10px 0;
}

section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.project-list article,
.event-list article {
    margin-bottom: 15px;
}

/* フッター */
footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer p, footer a {
    color: #fff;
    text-decoration: none;
}

/* メディアクエリ: レスポンシブ対応 */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    .hero-text {
        margin-right: 0;
        text-align: center;
    }
}

/* イベントページ用のレイアウト */
.event-page .page-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.calendar-wrapper, .form-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}
