@charset "UTF-8";

/* =========================================================
   基本設定 (Base)
   ========================================================= */
:root {
    --primary-color: #0f2350; /* 濃紺 */
    --accent-color: #c9171e;  /* 赤 */
    --bg-color: #f9f9f9;
    --text-color: #333333;
    --white: #ffffff;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 900;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}
a:hover { opacity: 0.7; }

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   ヘッダー (Header)
   ========================================================= */
header {
    background-color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo a {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.logo span {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 0.1em;
}

.global-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.global-nav li { margin-left: 20px; }

.global-nav ul li a{
					font-weight: bold;
					}
					
.nav-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* =========================================================
   全ページ共通：ページ上部のネイビー帯（バナー）
   ========================================================= */
.page-header-banner {
    background-color: var(--primary-color); /* 濃紺 #0f2350 */
    color: var(--white);
    padding: 80px 20px;
    text-align: center; /* 文字の位置をセンタリング */
    width: 100%;        /* 画面いっぱいに広げる */
    margin: 0 0 60px 0;
    box-sizing: border-box;
}

.page-header-banner h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-weight: 900;
}

.page-header-banner p {
    font-size: 1rem;
    margin: 10px 0 0 0;
    letter-spacing: 0.1em;
    opacity: 0.9;
}


/* =========================================================
   ヒーローエリア (復元)
   ========================================================= */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
}

.highlight-blue {
    color: #4db8ff; /* 濃紺背景に映える水色 */
    font-weight: bold;
}

/* =========================================================
   政策セクション (3つの未来)
   ========================================================= */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 80px 0 40px;
    color: var(--primary-color);
}

.policy-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-stack-box {
    background: var(--white);
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #eee;
}

.layer-header {
    background-color: var(--primary-color);
    padding: 12px 25px;
    border-bottom: 2px solid var(--white);
}

.layer-title-text {
    color: #ffeb3b;
    font-weight: bold;
    font-size: 1.15rem;
}

.policy-stack-box h3 {
    padding: 30px 25px 15px;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.policy-stack-box p {
    padding: 0 25px 25px;
    margin: 0;
}

/* 黄色いマーカー（強調ライン）の設定 */
strong {
    /* 下半分に黄色いラインを引く設定（透明から黄色へのグラデーション） */
    background: linear-gradient(transparent 60%, #ffff00 60%);
    font-weight: bold;
    padding: 0 2px; /* 文字の左右に少し余白を作ると綺麗に見えます */
}

/* =========================================================
   左寄せタイトル (代表・支援・概要用)
   ========================================================= */
.section-title-left {
    text-align: left;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 80px 0 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.profile-box, .support-box, .org-box {
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}

/* 森零の名前センタリング */
.profile-name-large {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.profile-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.profile-message {
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
}

/* =========================================================
   活動報告 (ロールオーバー復元)
   ========================================================= */
/* 活動報告の枠（トピックスの枠）を大きく・角丸にする設定 */
.news-item {
    background-color: #ffffff; /* 枠内を白にする */
    margin-bottom: 20px;       /* 枠同士の上下の間隔を広げる */
    padding: 30px 25px;        /* 枠内の余白を大きくしてサイズを倍くらいにする */
    border-radius: 12px;       /* 角を丸くする */
    border: 1px solid #eee;    /* 全体を薄い線で囲む */
    border-left: 8px solid transparent; /* ホバー時の赤線用の土台を少し太く */
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 軽く影をつけて立体感を出す */
}

/* ホバー（マウスを置いた時）の動き */
.news-item:hover {
    opacity: 0.8;
    background-color: #fcfcfc;
    border-left: 8px solid var(--accent-color); /* 左側の赤線を太めに表示 */
    padding-left: 35px; /* 線が出た時に文字を少し右へ動かす */
    transform: translateY(-3px); /* 枠が少し上に浮き上がる動きを追加 */
}

/* 日付とタイトルの配置調整 */
.news-item a {
    display: flex;
    flex-direction: column; /* スマホでも見やすいよう縦並びを基本にする */
    align-items: flex-start;
}

.news-date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 10px; /* 日付とタイトルの間の余白 */
}

/* 活動報告のタイトルを太字・強調にする設定 */
.news-title {
    font-size: 1.2rem;       /* タイトルを少し大きく */
    font-weight: bold;       /* ★ここを bold にして太字に指定 */
    line-height: 1.5;
    color: var(--primary-color); /* タイトルの色をネイビーに */
}/* =========================================================
   その他コンポーネント
   ========================================================= */
.btn-origin {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
}

.org-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
}

.org-table th, .org-table td { padding: 20px; border-bottom: 1px solid #eee; }
.org-table th { text-align: left; width: 30%; color: var(--primary-color); }

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 1000;
}

footer {
    background-color: #0f2350;
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    margin-top: 100px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .profile-name-large { font-size: 2rem; }
}

/* =========================================================
   活動報告ページ (news.html) 用のスタイル統合
   ========================================================= */
.news-article {
    background: var(--white);
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    /* 枠の横線をサイト共通のネイビーに変更 */
    border-left: 5px solid var(--primary-color); 
}

.news-meta {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.news-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color); /* タイトルも共通ネイビーに */
    font-family: 'Noto Serif JP', serif;
}

.news-body {
    line-height: 1.8;
}

/* フッターの回り込みと横幅を強制修正 */
footer {
    clear: both;
    width: 100%;
    background-color: var(--primary-color) !important;
}