@charset "UTF-8";

/* --- 全体設定 --- */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    /* 画面が780pxより小さくなっても縮めない */
    min-width: 780px; 
}

/* --- 全体を包む枠（780px固定） --- */
#wrapper {
    width: 780px; 
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* --- ヘッダー --- */
#main-header {
    width: 780px;
    border-bottom: 3px solid #00469b;
    padding: 20px 0; /* 左右のpaddingは0にするか、幅計算に含める */
}

.header-inner {
    width: 740px; /* 余白分を引いた実質幅 */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- アイキャッチ（横幅いっぱい） --- */
.full-width-eyecatch {
    width: 780px;
    height: auto;
    overflow: hidden;
}

.full-width-eyecatch img {
    width: 780px;
    height: auto;
    display: block;
}

/* --- メインエリア（2カラム固定） --- */
.container {
    width: 780px;
    display: table; /* Flexboxより古いブラウザでもズレにくいtableレイアウト風 */
    table-layout: fixed;
}

/* --- サイドバー（左：220px固定） --- */
#sidebar {
    display: table-cell;
    width: 220px;
    vertical-align: top;
    background-color: #eef3f8;
    padding: 20px;
}

/* --- メインコンテンツ（右：560px固定） --- */
/* 780px - (220px + padding40px) = 520px (paddingを加味して調整) */
#main-content {
    display: table-cell;
    width: 520px;
    vertical-align: top;
    padding: 20px;
    background-color: #fff;
}

/* --- サイドバーメニュー --- */
.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav li a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #00469b;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}

.side-nav a:hover {
    background-color: #00469b;
    color: #fff;
}

/* --- フッター --- */
#main-footer {
    width: 780px;
    background-color: #00469b;
    color: #fff;
    padding: 20px 0;
}

.footer-inner {
    width: 740px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
}

/* アイキャッチの親要素 */
.eyecatch-wrapper {
    position: relative; /* これが基準になります */
    width: 780px;
    height: auto;
}

/* パンくずのコンテナ */
.breadcrumb-container {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85); /* 背景を少し透かした白に */
    padding: 5px 15px;
    border-top-left-radius: 5px; /* 角を少し丸くしておしゃれに */
}

/* パンくず内のテキスト装飾 */
.breadcrumb-inner {
    font-size: 11px;
    color: #333;
}

.breadcrumb-inner a {
    text-decoration: none;
    color: #00469b; /* TiSAブルー */
}

.breadcrumb-inner a:hover {
    text-decoration: underline;
}
