/* ============================================================
   SEO / アクセシビリティ補助スタイル
   - スキップリンク（本文へスキップ）
   - スクリーンリーダー専用テキスト
   - パンくずリスト
   ============================================================ */

/* スクリーンリーダー専用（視覚的に隠す） */
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* スキップリンク：フォーカス時のみ表示 */
.skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    z-index: 100000;
    padding: 10px 16px;
    background: #2b8a3e;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 8px;
}

/* パンくずリスト */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #aaa;
}

.breadcrumb a {
    color: #2b8a3e;
    text-decoration: none;
}

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

.breadcrumb li[aria-current="page"] {
    color: #888;
}

/* div → 見出しタグへ変更した要素のUAマージン/装飾を打ち消し、
   既存デザインを維持する（クラスのスタイルはそのまま活かす） */
h2.serviceBlockTitle,
h2.cateTitleErea,
h3.articleTitle {
    margin: 0;
}

/* 投稿（single）の記事ヘッダー */
.article-header {
    margin-bottom: 8px;
}

.article-title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 8px 0 0;
    color: #333;
}

/* フッターの事業者情報 */
.footer-info {
    text-align: center;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-info .footer-desc {
    font-size: 13px;
    opacity: .85;
}
