
Theme Name: テーマ研究用
Theme URI: https://example.com
Author: FANC
Author URI: https://example.com
Description: 選挙立候補者向けのWordPressテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: election-campaign
Tags: blue, campaign, responsive, political

/* メインデザイン */
body {
    font-family: 'Arial', sans-serif;
    color: #222;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* 青色メインカラー */
:root {
    --main-color: #0047AB;
}

/* ヘッダー */
header {
    background-color: var(--main-color);
    color: white;
    padding: 20px;
    text-align: center;
}

/* ナビゲーション */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* ヒーローセクション */
.hero {
    background-image: url('images/MacBook\ Pro\ 16_\ -\ 1.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}



.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
/* アニメーション（スクロールでフェードイン） */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

/* ボタンホバー */
.btn:hover {
    background-color: #003b8f;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
/* 政策セクション */
.policy {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
}

.policy-item {
    text-align: center;
}

.policy-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.policy-item h3 {
    font-size: 1.5em;
    color: var(--main-color);
    margin-bottom: 10px;
}

/* レスポンシブデザイン（モバイル対応） */
@media only screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    nav ul {
        display: none;
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active + nav ul {
        display: flex;
    }
}

/* 寄付フォーム */
.donate-form input,
.donate-form select,
.donate-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.donate-form button {
    background-color: var(--main-color);
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

.donate-form button:hover {
    background-color: #003b8f;
    transform: translateY(-3px);
}

/* カウントダウンタイマー */
.countdown {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--main-color);
    color: white;
    font-size: 2em;
}

.countdown h2 {
    margin-bottom: 20px;
}

