/* パンくずリスト */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.2rem 2rem;
    background: white;
}
.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1.1rem;
}
.breadcrumb li {
    display: flex;
    align-items: center;
}
.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #999;
}
.breadcrumb a {
    color: #1976D2;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* ページヘッダー */
.page-header {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
/* リード */
.lead {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}
/* セクション */
.section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

