@charset "UTF-8";

/* ==================================================
   1. 共通・レイアウト調整
   ================================================== */
section {
    padding: 60px 20px;
}

/* ヘッダー */
.hd_container {
    flex-direction: column;
    gap: 15px;
}

.hd_menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hd_menu li {
    width: 45%;
}

.hd_menu a {
    display: block;
    background: var(--bg-gray);
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}


/* ==================================================
   2. トップページ固有
   ================================================== */
/* メインビジュアル */
.top_visual {
    padding: 40px 15px;
}

.visual_inner {
    flex-direction: column;
    padding: 30px 20px;
    max-height: none;
    gap: 20px;
}

.visual_inner img {
    width: 150px;
    height: 150px;
    margin: 0;
    border-radius: 50%;
}

.catch_copy {
    width: 100px;
    height: 100px;
    font-size: 16px;
}

.visual_text h1 {
    font-size: 48px;
    text-align: center;
}

/* 政策リスト */
.policy_list {
    flex-direction: column;
}

.policy_item {
    width: 100%;
    margin-bottom: 20px;
}


/* ==================================================
   3. ニュース・お知らせシステム
   ================================================== */
.news_link_box {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

/* お知らせアーカイブの余白調整 */
#news_archive_section {
    margin-top: 40px;
    padding-top: 40px;
}

/* 表示件数選択エリア */
.news_controls {
    text-align: right;
    margin-bottom: 15px;
}

.news_controls select {
    font-size: 16px;
    padding: 10px;
}


/* ==================================================
   4. プロフィール詳細ページ
   ================================================== */
.page_header {
    padding: 60px 20px;
}

.page_header h2 {
    font-size: 30px;
}

/* 写真＋メッセージエリア */
.profile_top_area {
    flex-direction: column;
    gap: 20px;
}

.profile_sidebar {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
}

.side_image img {
    width: 150px;
    height: 150px;
}

.profile_top_area .bio_message {
    width: 100%;
    margin-top: 0;
    box-sizing: border-box;
}

/* 略歴 */
.history_row {
    flex-direction: column;
    margin-bottom: 25px;
}

.history_date {
    width: 100%;
    margin-bottom: 5px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 2px;
}

/* テーブル */
.info_table th, .info_table td {
    display: block;
    width: 100%;
}

.info_table th {
    background: #f4f9f4;
    padding-top: 10px;
    padding-bottom: 5px;
}

.info_table td {
    padding-top: 5px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}