/* 全体のリセットと基本設定 */
body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* コンテナ：中央寄せ */
.container, .header-inner, .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #e60012; /* アクセントカラー(赤) */
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
.top-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* パンくずリスト */
.breadcrumbs {
    background: #eee;
    padding: 10px 20px;
    font-size: 0.9rem;
    max-width: 1100px;
    margin: 0 auto 20px;
}

/* レイアウト本体（サイドバーとメイン） */
.container {
    display: flex;
    gap: 40px; /* サイドバーとメインの間隔 */
    margin-bottom: 50px;
}

/* サイドバー */
.sidebar {
    width: 250px;
    flex-shrink: 0;
}
.side-menu {
    list-style: none;
    padding: 0;
    border: 1px solid #ddd;
    background: #fff;
}
.side-menu li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
}
.side-menu li a:hover {
    background-color: #f4f4f4;
    color: #e60012;
}

/* メインコンテンツ */
.main-content {
    flex-grow: 1; /* 残りの幅を全部使う */
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.main-visual {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
h1 {
    font-size: 2rem;
    border-bottom: 2px solid #e60012;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
h2 {
    background: #f4f4f4;
    padding: 10px;
    border-left: 5px solid #e60012;
    margin-top: 40px;
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
