@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ(青森観光案内ブログ)
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.0.0
*/

/* ==============================
   リセット・共通
============================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans JP', sans-serif; background: #F7F8F4; color: #333; }
.ao-mh { font-family: 'Shippori Mincho', serif; }

/* こぎん刺し風パターン(区切り線) */
.ao-kogin-rule {
  height: 8px;
  background-image: linear-gradient(45deg, #223A5E 25%, transparent 25%, transparent 75%, #223A5E 75%),
    linear-gradient(45deg, #223A5E 25%, transparent 25%, transparent 75%, #223A5E 75%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  background-color: #EDE8DC;
}

/* ==============================
   ヘッダー
============================== */
.ao-header { background: #fff; border-bottom: 2px solid #223A5E; padding: 14px 24px; position: sticky; top: 0; z-index: 100; }
.ao-header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.ao-logo-main { font-size: 20px; font-weight: 700; color: #14283F; }
.ao-logo-sub { font-size: 10px; color: #A9BAC7; letter-spacing: 0.08em; }

/* ナビ */
.ao-nav ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.ao-nav ul li { position: relative; }
.ao-nav ul li a { font-size: 15px; color: #444; text-decoration: none; }
.ao-nav ul li a:hover { color: #223A5E; }

/* ドロップダウン */
.ao-nav ul li ul { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #DDD6C4; border-radius: 8px; padding: 8px 0; min-width: 180px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 200; }
.ao-nav ul li:hover ul { display: block; }
.ao-nav ul li ul li a { display: block; padding: 8px 16px; font-size: 13px; color: #444; white-space: nowrap; }
.ao-nav ul li ul li a:hover { background: #F0ECE2; color: #223A5E; }

/* ハンバーガー */
.ao-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.ao-hamburger span { display: block; width: 24px; height: 2px; background: #223A5E; border-radius: 2px; transition: all 0.3s; }
.ao-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ao-hamburger.is-open span:nth-child(2) { opacity: 0; }
.ao-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   パンくず
============================== */
.ao-breadcrumb { background: #fff; border-bottom: 1px solid #DDD6C4; padding: 10px 24px; font-size: 11px; color: #888; }
.ao-breadcrumb-inner { max-width: 1200px; margin: 0 auto; }
.ao-breadcrumb a { color: #223A5E; text-decoration: none; }
.ao-breadcrumb a:hover { text-decoration: underline; }
.ao-breadcrumb span { margin: 0 6px; }

/* ==============================
   ヒーロースライダー
============================== */
.ao-hero { position: relative; height: 380px; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 32px; }
.ao-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,40,63,0.75) 0%, rgba(20,40,63,0.25) 100%); }
.ao-hero-inner { position: relative; z-index: 2; }
.ao-hero-tag { font-size: 12px; letter-spacing: 0.2em; color: #A9BAC7; margin-bottom: 10px; }
.ao-hero-title { font-family: 'Shippori Mincho', serif; font-size: 40px; font-weight: 700; line-height: 1.6; color: #fff; margin-bottom: 0; }

/* ==============================
   セクション共通
============================== */
.ao-section { padding: 32px 0 0; }
.ao-section-bg { background: #F0ECE2; padding: 24px 0; }
.ao-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ao-divider { height: 1px; background: #DDD6C4; max-width: 1200px; margin: 0 auto; }

.ao-sec-head { padding: 0 24px 14px; max-width: 1200px; margin: 0 auto; display: flex; align-items: baseline; gap: 14px; }
.ao-sec-en { font-size: 13px; color: #223A5E; letter-spacing: 0.2em; font-weight: 500; white-space: nowrap; }
.ao-sec-ja { font-family: 'Shippori Mincho', serif; font-size: 26px; font-weight: 700; color: #14283F; white-space: nowrap; }
.ao-sec-line { flex: 1; height: 1px; background: #DDD6C4; }

/* ==============================
   横スクロールカード(一部セクションのみ使用)
============================== */
.ao-hscroll { display: flex; gap: 14px; padding: 0 24px 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 1200px; margin: 0 auto; }
.ao-hscroll::-webkit-scrollbar { display: none; }
.ao-hcard { width: 300px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: #fff; border: 1px solid #DDD6C4; text-decoration: none; display: block; transition: border-color 0.2s; }
.ao-hcard:hover { border-color: #223A5E; }
.ao-hcard-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #F0ECE2; }
.ao-hcard-img img { width: 100%; height: 100%; object-fit: cover; }
.ao-hcard-body { padding: 10px 12px; }
.ao-hcard-cat { font-size: 11px; color: #223A5E; font-weight: 500; letter-spacing: 0.08em; margin-bottom: 5px; }
.ao-hcard-title { font-family: 'Shippori Mincho', serif; font-size: 14px; font-weight: 700; color: #333; line-height: 1.5; }
.ao-hcard-date { font-size: 11px; color: #aaa; margin-top: 4px; }

/* ==============================
   HOT SPOT(ヒーローと差別化したスライダー)
============================== */
.ao-hotspot-slider-wrap { max-width: 1200px; margin: 0 auto 8px; padding: 0 24px; position: relative; }
.ao-hotspot-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; border-radius: 4px; }
.ao-hotspot-slider::-webkit-scrollbar { display: none; }
.ao-hotspot-slide { flex: 0 0 100%; scroll-snap-align: start; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #DDD6C4; border-radius: 4px; overflow: hidden; background: #fff; text-decoration: none; color: inherit; }
.ao-hotspot-img { aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: #F0ECE2; }
.ao-hotspot-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.ao-hotspot-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: 0.15em; color: #C1432E; margin-bottom: 12px; }
.ao-hotspot-badge .ao-diamond { width: 6px; height: 6px; background: #C1432E; transform: rotate(45deg); flex-shrink: 0; }
.ao-hotspot-title { font-family: 'Shippori Mincho', serif; font-size: 26px; font-weight: 700; color: #14283F; margin-bottom: 10px; line-height: 1.6; }
.ao-hotspot-sub { font-size: 13px; color: #999; }

.ao-hotspot-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: #fff; border: 1px solid #DDD6C4; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; color: #223A5E; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.ao-hotspot-arrow:hover { background: #223A5E; color: #fff; border-color: #223A5E; }
.ao-hotspot-arrow-prev { left: 8px; }
.ao-hotspot-arrow-next { right: 8px; }

.ao-hotspot-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.ao-hotspot-dot { width: 6px; height: 6px; border-radius: 50%; background: #DDD6C4; border: none; padding: 0; cursor: pointer; }
.ao-hotspot-dot.is-active { background: #223A5E; width: 18px; border-radius: 3px; transition: width 0.2s; }

/* ==============================
   新着記事(サムネイル付きコンパクトグリッド)
============================== */
.ao-latest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ao-latest-item { text-decoration: none; color: inherit; display: block; }
.ao-latest-img { width: 100%; aspect-ratio: 16/9; border-radius: 2px; background-size: cover; background-position: center; background-color: #F0ECE2; margin-bottom: 10px; }
.ao-latest-cat { font-size: 11px; color: #223A5E; letter-spacing: 0.08em; margin-bottom: 4px; }
.ao-latest-title { font-family: 'Shippori Mincho', serif; font-size: 15px; font-weight: 700; line-height: 1.6; margin-bottom: 4px; color: #333; }
.ao-latest-date { font-size: 12px; color: #999; }
.ao-more-btn { display: inline-block; border: 1px solid #223A5E; color: #223A5E; padding: 10px 32px; border-radius: 20px; font-size: 12px; font-weight: 700; text-decoration: none; }
.ao-more-btn:hover { background: #223A5E; color: #fff; }

/* ==============================
   お知らせ内の単独リンク(記事ではないことを明示)
============================== */
.ao-inline-link-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px 16px; }
.ao-inline-link { display: inline-flex; align-items: center; gap: 8px; background: #F0ECE2; border: 1px solid #DDD6C4; border-radius: 20px; padding: 8px 16px; font-size: 12px; color: #14283F; text-decoration: none; font-weight: 700; }
.ao-inline-link:hover { border-color: #223A5E; background: #EAF0F6; }
.ao-inline-link .ao-diamond { width: 6px; height: 6px; background: #C1432E; transform: rotate(45deg); flex-shrink: 0; }
.ao-inline-link-arrow { color: #223A5E; font-size: 12px; }

/* ==============================
   お知らせ・更新情報(テキストリスト)
============================== */
.ao-news-list { max-width: 1200px; margin: 0 auto; padding: 0 24px; padding-bottom: 24px; border-top: 1px solid #DDD6C4; }
.ao-news-item { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid #DDD6C4; text-decoration: none; color: inherit; }
.ao-news-item:hover .ao-news-title { color: #223A5E; }
.ao-news-date { font-size: 13px; color: #999; width: 90px; flex-shrink: 0; }
.ao-news-cat { font-size: 11px; color: #C1432E; width: 76px; flex-shrink: 0; font-weight: 700; }
.ao-news-title { font-family: 'Shippori Mincho', serif; font-size: 16px; font-weight: 700; flex: 1; color: #333; }
.ao-news-arrow { font-size: 12px; color: #ccc; flex-shrink: 0; }

/* ==============================
   エリア図鑑(都市ごとに帯セクション)
============================== */
.ao-area-band { padding: 48px 0; }
.ao-area-band-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.ao-area-band.ao-rev .ao-area-band-inner { direction: rtl; }
.ao-area-band.ao-rev .ao-area-band-inner > * { direction: ltr; }
.ao-area-img { width: 100%; aspect-ratio: 4/3; border-radius: 2px; overflow: hidden; background-size: cover; background-position: center; background-color: #DDD6C4; }
.ao-area-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ao-area-eyebrow { font-size: 11px; letter-spacing: 0.2em; margin-bottom: 10px; }
.ao-area-name { font-family: 'Shippori Mincho', serif; font-size: 28px; font-weight: 700; margin-bottom: 14px; }
.ao-area-desc { font-size: 13px; line-height: 2; margin-bottom: 18px; color: #333; }
.ao-area-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.ao-area-band.a1 { background: #EAF0F6; } .ao-area-band.a1 .ao-area-eyebrow, .ao-area-band.a1 .ao-area-name, .ao-area-band.a1 .ao-area-link { color: #22405F; }
.ao-area-band.a2 { background: #F5EDE4; } .ao-area-band.a2 .ao-area-eyebrow, .ao-area-band.a2 .ao-area-name, .ao-area-band.a2 .ao-area-link { color: #8A4A2A; }
.ao-area-band.a3 { background: #E8F1EC; } .ao-area-band.a3 .ao-area-eyebrow, .ao-area-band.a3 .ao-area-name, .ao-area-band.a3 .ao-area-link { color: #2C6B4C; }

/* ==============================
   エリアから探す(タグ)
============================== */
.ao-area-tags { display: flex; flex-wrap: wrap; gap: 10px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ao-area-tags a { background: #fff; border: 1px solid #223A5E; border-radius: 20px; padding: 8px 20px; font-size: 12px; color: #223A5E; text-decoration: none; }
.ao-area-tags a:hover { background: #223A5E; color: #fff; }

/* ==============================
   ピックアップ記事(カテゴリー代表4枚均等グリッド)
============================== */
.ao-pickup4-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ao-pickup4-item { text-decoration: none; color: inherit; display: block; }
.ao-pickup4-img { width: 100%; aspect-ratio: 16/9; border-radius: 2px; background-size: cover; background-position: center; background-color: #F0ECE2; margin-bottom: 10px; }
.ao-pickup4-cat { font-size: 11px; color: #C1432E; letter-spacing: 0.08em; margin-bottom: 5px; }
.ao-pickup4-title { font-family: 'Shippori Mincho', serif; font-size: 15px; font-weight: 700; line-height: 1.6; color: #333; }

/* ==============================
   食べ物図鑑(市販品カード)
============================== */
.ao-food-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ao-food-item { text-decoration: none; color: inherit; display: block; }
.ao-food-img { width: 100%; aspect-ratio: 16/9; border-radius: 2px; background-size: cover; background-position: center; background-color: #F0ECE2; margin-bottom: 8px; border: 1px solid #DDD6C4; }
.ao-food-name { font-size: 14px; font-weight: 700; line-height: 1.5; color: #333; }
.ao-food-sub { font-size: 11px; color: #999; margin-top: 2px; }

/* ==============================
   ねぶた伝承会 / YouTubeリンク(フッター寄り)
============================== */
.ao-link-band { max-width: 1200px; margin: 0 auto; padding: 24px; display: flex; gap: 16px; flex-wrap: wrap; }
.ao-link-card { flex: 1; min-width: 240px; border-radius: 6px; padding: 20px; text-decoration: none; display: flex; align-items: center; gap: 16px; transition: transform 0.15s; }
.ao-link-card:hover { transform: translateY(-2px); }
.ao-link-card-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; }
.ao-link-card-label { font-size: 10px; letter-spacing: 0.1em; margin-bottom: 4px; }
.ao-link-card-title { font-family: 'Shippori Mincho', serif; font-size: 15px; font-weight: 700; }

.ao-link-card-nebuta { background: #14283F; border: 1px solid #14283F; }
.ao-link-card-nebuta .ao-link-card-icon { background: #C1432E; color: #fff; }
.ao-link-card-nebuta .ao-link-card-label { color: #A9BAC7; }
.ao-link-card-nebuta .ao-link-card-title { color: #fff; }

.ao-link-card-youtube { background: #fff; border: 1px solid #DDD6C4; }
.ao-link-card-youtube .ao-link-card-icon { background: #FF0000; color: #fff; }
.ao-link-card-youtube .ao-link-card-label { color: #C1432E; }
.ao-link-card-youtube .ao-link-card-title { color: #14283F; }

/* ==============================
   特集カード
============================== */
.ao-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 24px 24px; max-width: 1200px; margin: 0 auto; }
.ao-feature-card { border-radius: 12px; overflow: hidden; text-decoration: none; display: block; position: relative; height: 220px; background-size: cover; background-position: center; }
.ao-feature-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,53,73,0.88) 0%, rgba(18,53,73,0.1) 100%); }
.ao-feature-card-text { position: absolute; bottom: 20px; left: 20px; color: #fff; z-index: 1; }
.ao-feature-card-tag { font-size: 10px; color: #A9BAC7; letter-spacing: 0.15em; margin-bottom: 6px; }
.ao-feature-card-title { font-size: 20px; font-weight: 700; }
.ao-feature-card-count { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ==============================
   カテゴリー導線グリッド
============================== */
.ao-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 0 24px 24px; max-width: 1200px; margin: 0 auto; }
.ao-cat-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 22px 12px; border-radius: 10px; text-decoration: none; color: #fff; font-size: 14px; font-weight: 700; text-align: center; transition: transform 0.2s, opacity 0.2s; }
.ao-cat-card:hover { transform: translateY(-3px); opacity: 0.9; }
.ao-cat-icon { font-size: 26px; line-height: 1; }
.ao-cat-card.ao-c1 { background: linear-gradient(135deg, #4fa8e8, #223A5E); }
.ao-cat-card.ao-c2 { background: linear-gradient(135deg, #6fcf97, #2e9e5b); }
.ao-cat-card.ao-c3 { background: linear-gradient(135deg, #f6a068, #e17b2e); }
.ao-cat-card.ao-c4 { background: linear-gradient(135deg, #8d7ae0, #5b4bc4); }
.ao-cat-card.ao-c5 { background: linear-gradient(135deg, #A9BAC7, #223A5E); }
.ao-cat-card.ao-c6 { background: linear-gradient(135deg, #ef7d97, #d8496a); }

/* ==============================
   YouTube
============================== */
.ao-youtube-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; }
.ao-youtube-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ao-youtube-more { display: inline-block; background: #FF0000; color: #fff; font-size: 13px; font-weight: 700; padding: 10px 24px; border-radius: 20px; text-decoration: none; margin-top: 14px; }
.ao-youtube-more:hover { background: #14283F; }
.ao-youtube-wrap-outer { max-width: 800px; margin: 0 auto; padding: 0 24px 24px; }

/* ==============================
   バナー
============================== */
.ao-banner-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ao-banner-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ao-banner-row-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.ao-banner-item img, .ao-banner-row-3 img, .ao-banner-row-4 img, .ao-banner-row-5 img { width: 100%; height: auto; display: block; border-radius: 8px; }

/* 姉妹サイト風バナー(のれんページ等) */
.ao-banner-noren { display: block; border-radius: 10px; background: #0f1f40; border: 1px solid #b89a5a; text-decoration: none; }
.ao-banner-noren-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 24px; }
.ao-banner-noren-eyebrow { font-size: 10px; color: #b89a5a; letter-spacing: 0.12em; margin-bottom: 4px; }
.ao-banner-noren-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ao-banner-noren-sub { font-size: 12px; color: rgba(255,255,255,0.65); }
.ao-banner-noren-btn { background: #b89a5a; color: #0f1f40; font-size: 12px; font-weight: 700; padding: 8px 18px; border-radius: 20px; white-space: nowrap; }

/* ==============================
   姉妹サイトカード
============================== */
.ao-sister-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 24px 24px; max-width: 1200px; margin: 0 auto; }
.ao-sister-card { border-radius: 12px; padding: 24px; text-decoration: none; display: block; background: #14283F; border: 1px solid #223A5E; }
.ao-sister-eyebrow { font-size: 10px; letter-spacing: 0.1em; margin-bottom: 6px; color: #A9BAC7; }
.ao-sister-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ao-sister-sub { font-size: 12px; color: rgba(127,200,232,0.8); line-height: 1.6; }
.ao-sister-btn { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 700; padding: 8px 18px; border-radius: 20px; background: #223A5E; color: #fff; }

/* ==============================
   メインレイアウト(single/archive)
============================== */
.ao-container { max-width: 1200px; margin: 0 auto; padding: 24px; display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.ao-container-narrow { max-width: 1200px; }

/* ==============================
   記事エリア(single)
============================== */
.ao-article { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #DDD6C4; }
.ao-article-thumb-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.ao-article-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.ao-article-thumb-placeholder { width: 100%; aspect-ratio: 16/9; background: #F0ECE2; }
.ao-article-body { padding: 24px; }
.ao-article-cat { font-size: 10px; color: #223A5E; font-weight: 500; letter-spacing: 0.1em; margin-bottom: 8px; }
.ao-article-title { font-family: 'Shippori Mincho', serif; font-size: 22px; font-weight: 700; color: #14283F; line-height: 1.5; margin-bottom: 12px; }
.ao-article-meta { font-size: 11px; color: #aaa; margin-bottom: 20px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.ao-article-tag { background: #F0ECE2; color: #223A5E; border-radius: 20px; padding: 3px 10px; font-size: 10px; text-decoration: none; }
.ao-article-tag:hover { background: #223A5E; color: #fff; }
.ao-article-divider { height: 1px; background: #DDD6C4; margin: 20px 0; }

/* ==============================
   記事本文
============================== */
.ao-entry-content { font-size: 14px; line-height: 1.9; color: #444; }

.ao-entry-content h2 {
  position: relative;
  font-size: 19px;
  font-weight: 700;
  color: #14283F;
  margin: 36px 0 18px;
  padding: 16px 22px;
  background: #F0ECE2;
  border-radius: 2px;
}
.ao-entry-content h2::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid #b7dcf1;
  pointer-events: none;
}
.ao-entry-content h2::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  border-width: 0 18px 18px 0;
  border-style: solid;
  border-color: #fff #fff #A9BAC7;
  box-shadow: -1px 1px 2px rgba(0,0,0,0.1);
}

.ao-entry-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 14px;
  padding: 10px 16px;
  background: #223A5E;
  border-radius: 4px;
}

.ao-entry-content h4 {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #14283F;
  margin: 22px 0 10px;
  padding-bottom: 8px;
  border-bottom: 3px solid #DDD6C4;
}
.ao-entry-content h4::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #223A5E;
}

.ao-entry-content p { margin-bottom: 16px; }
.ao-entry-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }
.ao-entry-content .wp-caption-text,
.ao-entry-content figcaption {
  margin-top: -12px !important;
  margin-bottom: 16px !important;
  padding: 0 !important;
  font-size: 12px;
  color: #888;
  text-align: center;
  line-height: 1.5;
}
.ao-entry-content a { color: #223A5E; }

/* リンクカード(Cocoonブログカード)のデザイン統一 */
.ao-entry-content .blogcard-wrap,
.ao-entry-content .internal-blogcard-wrap,
.ao-entry-content .external-blogcard-wrap {
  margin: 16px 0 24px !important;
  padding: 0 !important;
  width: 100% !important;
  border-radius: 8px !important;
  border: 1px solid #DDD6C4 !important;
  overflow: hidden;
  box-shadow: none !important;
  background: #fff !important;
}
.ao-entry-content .blogcard,
.ao-entry-content .internal-blogcard,
.ao-entry-content .external-blogcard {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 15px !important;
}
.ao-entry-content .blogcard-content-title,
.ao-entry-content .blogcard-title { color: #14283F !important; font-weight: 700 !important; }
.ao-entry-content .blogcard-label,
.ao-entry-content .internal-blogcard-label { background: #223A5E !important; }
.ao-entry-content .blogcard-thumbnail,
.ao-entry-content .internal-blogcard-thumbnail { background: #F0ECE2 !important; }
.ao-entry-content .blogcard-snippet { color: #888 !important; }
.ao-entry-content .blogcard-domain,
.ao-entry-content .blogcard-post-date { color: #999 !important; }

.ao-entry-content .blogcard-thumbnail img,
.ao-entry-content .blogcard-thumb-image,
.ao-entry-content .internal-blogcard-thumb-image,
.ao-entry-content .external-blogcard-thumb-image {
  margin: 0 !important;
  border-radius: 0 !important;
}

.ao-entry-content ul,
.ao-entry-content ol {
  margin-left: 0 !important;
  padding-left: 1.2em !important;
  margin-bottom: 16px;
}
.ao-entry-content li { margin-bottom: 6px; }

.ao-entry-content blockquote {
  position: relative;
  border-left: 4px solid #223A5E;
  padding: 20px 20px 20px 52px;
  background: #F0ECE2;
  margin: 16px 0;
  font-size: 13px;
  color: #666;
  line-height: 1.9;
  border-radius: 0 8px 8px 0;
  box-shadow: none !important;
}
.ao-entry-content blockquote::before {
  content: '\201C' !important;
  position: absolute !important;
  top: 10px !important;
  left: 14px !important;
  font-size: 48px !important;
  color: #A9BAC7 !important;
  line-height: 1 !important;
  font-family: Georgia, serif !important;
  font-weight: 700 !important;
  z-index: 1 !important;
  opacity: 1 !important;
}
.ao-entry-content blockquote::after {
  content: '' !important;
  display: none !important;
}

.ao-entry-content table { width: 100%; border-collapse: collapse; margin: 16px 0; table-layout: auto; }
.ao-entry-content th { background: #F0ECE2; color: #14283F; font-weight: 700; padding: 10px 14px; border: 1px solid #DDD6C4; text-align: left; }
.ao-entry-content td { padding: 10px 14px; border: 1px solid #DDD6C4; word-break: normal; white-space: nowrap; }
.ao-entry-content .wp-block-table.is-style-stripes { border-bottom: none !important; }

/* ==============================
   記事内Cocoonブロック
============================== */
.blank-box.bb-tab { border-color: #223A5E !important; }
.blank-box.bb-tab .bb-label { background: #223A5E !important; color: #fff !important; }

.is-style-information-box, .information-box, .information,
.is-style-question-box, .question-box, .question,
.is-style-alert-box, .alert-box, .alert,
.is-style-memo-box, .memo-box,
.is-style-comment-box, .comment-box,
.is-style-ok-box, .ok-box,
.is-style-ng-box, .ng-box,
.is-style-good-box, .good-box,
.is-style-bad-box, .bad-box,
.is-style-profile-box, .profile-box,
.is-style-primary-box, .primary-box,
.is-style-secondary-box, .secondary-box,
.common-icon-box {
  border-radius: 8px !important;
  padding: 16px 16px 16px 56px !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}

@media (max-width: 640px) {
  .is-style-information-box, .information-box, .information,
  .is-style-question-box, .question-box, .question,
  .is-style-alert-box, .alert-box, .alert,
  .is-style-memo-box, .memo-box,
  .is-style-comment-box, .comment-box,
  .is-style-ok-box, .ok-box,
  .is-style-ng-box, .ng-box,
  .is-style-good-box, .good-box,
  .is-style-bad-box, .bad-box,
  .is-style-profile-box, .profile-box,
  .is-style-primary-box, .primary-box,
  .is-style-secondary-box, .secondary-box,
  .common-icon-box {
    padding: 48px 16px 16px 16px !important;
  }
  .common-icon-box::before,
  .information-box::before, .information::before,
  .question-box::before, .question::before,
  .alert-box::before, .alert::before,
  .memo-box::before, .comment-box::before,
  .ok-box::before, .ng-box::before,
  .good-box::before, .bad-box::before {
    padding: 0 !important;
    top: 1.0em !important;
    left: 50% !important;
    margin-left: -0.5em !important;
    font-size: 25px !important;
    border: none !important;
    width: auto !important;
  }
}

/* ==============================
   前後ナビ
============================== */
.ao-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.ao-post-nav-item { background: #fff; border: 1px solid #DDD6C4; border-radius: 8px; padding: 14px; text-decoration: none; display: block; }
.ao-post-nav-item:hover { border-color: #223A5E; }
.ao-post-nav-label { font-size: 10px; color: #223A5E; letter-spacing: 0.1em; margin-bottom: 6px; }
.ao-post-nav-title { font-size: 12px; font-weight: 700; color: #333; line-height: 1.5; }

/* ==============================
   関連記事
============================== */
.ao-related { margin-top: 8px; }
.ao-related-title { font-size: 15px; font-weight: 700; color: #14283F; margin-bottom: 14px; border-left: 3px solid #223A5E; padding-left: 10px; }
.ao-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ao-related-card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #DDD6C4; text-decoration: none; display: block; }
.ao-related-card:hover { border-color: #223A5E; }
.ao-related-img { aspect-ratio: 16/9; height: auto; background: #F0ECE2; overflow: hidden; }
.ao-related-img img { width: 100%; height: 100%; object-fit: cover; }
.ao-related-body { padding: 10px; }
.ao-related-cat { font-size: 9px; color: #223A5E; font-weight: 500; margin-bottom: 4px; }
.ao-related-name { font-size: 11px; font-weight: 700; color: #333; line-height: 1.4; }

/* ==============================
   目次(TOC)
============================== */
.toc {
  background: #fff;
  border: 1px solid #DDD6C4;
  border-radius: 10px;
  margin-bottom: 32px;
  overflow: hidden;
}
.toc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #14283F;
  padding: 14px 18px;
  background: #F0ECE2;
  border-bottom: 1px solid #DDD6C4;
}
.toc-title::before { content: none !important; }
.toc-content { padding: 14px 18px; }
.toc-content ol, .toc-content ul { padding-left: 0 !important; list-style: none !important; margin: 0; }
.toc-content li { font-size: 13px; margin-bottom: 0 !important; list-style: none !important; }
.toc-content li::marker { content: none !important; }

.toc-content li a, .toc-list li a {
  display: flex; align-items: center; gap: 8px; color: #444; text-decoration: none;
  padding: 1px 2px !important; border-radius: 4px; transition: background 0.15s;
  border: none !important; background: #fff !important; margin-bottom: 0 !important;
}
.toc-content li a:hover, .toc-list li a:hover { background: #F0ECE2 !important; color: #223A5E !important; }

.toc-content li a::before, .toc-list li a::before {
  content: ''; width: 8px; height: 8px; border-radius: 50% !important;
  background: #A9BAC7 !important; border: none !important; flex-shrink: 0;
}
.toc-content li li { padding-left: 20px; margin-top: 0 !important; }
.toc-list > li > ol li a:before,
.widget_categories li > ul > li > a:before,
.widget_nav_menu ul li ul a:before {
  position: static !important; width: 5px !important; height: 5px !important;
  top: auto !important; left: auto !important; border: none !important;
  background: #b7dcf1 !important; border-radius: 50% !important; margin-right: 8px; display: inline-block;
}
.toc-content li li li { padding-left: 16px; }
.toc-content li li li > a { font-size: 12px; color: #888; }
.toc-content li li li > a::before {
  content: '–' !important; width: auto !important; height: auto !important;
  background: none !important; color: #A9BAC7; font-weight: 700; border-radius: 0 !important;
}

/* ==============================
   アーカイブ
============================== */
.ao-archive-header { background: #F0ECE2; padding: 32px 24px; }
.ao-archive-header-inner { max-width: 1200px; margin: 0 auto; }
.ao-archive-label { font-size: 10px; color: #223A5E; letter-spacing: 0.12em; font-weight: 500; margin-bottom: 6px; }
.ao-archive-title { font-family: 'Shippori Mincho', serif; font-size: 26px; font-weight: 700; color: #14283F; margin-bottom: 6px; }
.ao-archive-count { font-size: 12px; color: #A9BAC7; }
.ao-archive-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.ao-archive-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #DDD6C4; text-decoration: none; display: block; transition: border-color 0.2s; }
.ao-archive-card:hover { border-color: #223A5E; }
.ao-archive-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #F0ECE2; }
.ao-archive-card-img img { width: 100%; height: 100%; object-fit: cover; }
.ao-archive-card-body { padding: 12px; }
.ao-archive-card-cat { font-size: 9px; color: #223A5E; font-weight: 500; letter-spacing: 0.08em; margin-bottom: 6px; }
.ao-archive-card-title { font-size: 13px; font-weight: 700; color: #333; line-height: 1.5; margin-bottom: 6px; }
.ao-archive-card-date { font-size: 10px; color: #aaa; }

/* ページネーション */
.ao-pagination { display: flex !important; gap: 8px; justify-content: center; margin-top: 32px; flex-wrap: wrap; align-items: center; border: none !important; background: none !important; box-shadow: none !important; }
.ao-pagination ul,
.ao-pagination ul.page-numbers {
  list-style: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  border-radius: 0 !important;
}
.ao-pagination li,
.ao-pagination ul li {
  display: inline-flex !important;
  width: auto !important;
  list-style: none !important;
  margin: 0 !important;
}
.ao-pagination ul li::marker { content: none !important; }
.ao-pagination a,
.ao-pagination span,
.ao-pagination a.page-numbers,
.ao-pagination span.page-numbers {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 40px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #DDD6C4;
  color: #444;
  background: #fff;
}
.ao-pagination a:hover { border-color: #223A5E; color: #223A5E; }
.ao-pagination .current,
.ao-pagination span.current {
  background: #223A5E !important;
  color: #fff !important;
  border-color: #223A5E !important;
}
.ao-no-posts { background: #fff; border-radius: 10px; padding: 40px; text-align: center; color: #888; font-size: 14px; }

/* ==============================
   サイドバー
============================== */
.ao-sidebar { display: flex; flex-direction: column; gap: 20px; }
.ao-sidebar-widget { background: #fff; border-radius: 10px; padding: 18px; border: 1px solid #DDD6C4; }
.ao-sidebar-title { font-size: 13px; font-weight: 700; color: #14283F; margin-bottom: 14px; border-left: 3px solid #223A5E; padding-left: 8px; }
.ao-sidebar-post { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #DDD6C4; text-decoration: none; }
.ao-sidebar-post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.ao-sidebar-post-img { width: 90px; aspect-ratio: 16/9; height: auto; border-radius: 6px; flex-shrink: 0; overflow: hidden; }
.ao-sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.ao-sidebar-post-title { font-size: 11px; font-weight: 700; color: #333; line-height: 1.5; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.ao-sidebar-post-cat { font-size: 9px; color: #223A5E; margin-bottom: 4px; }
.ao-sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ao-sidebar-tag { background: #F0ECE2; border: 1px solid #223A5E; border-radius: 20px; padding: 4px 12px; font-size: 11px; color: #223A5E; text-decoration: none; }
.ao-sidebar-tag:hover { background: #223A5E; color: #fff; }
.ao-sidebar-banner { display: block; border-radius: 8px; overflow: hidden; }
.ao-sidebar-banner img { width: 100%; height: auto; display: block; }

/* モバイル用フッターウィジェット */
.ao-mobile-footer-widget { display: none; }

/* ==============================
   固定ページ
============================== */
.ao-page-container { max-width: 800px; margin: 40px auto; padding: 0 24px 60px; }
.ao-page-article { background: #fff; border-radius: 10px; overflow: hidden; padding: 40px; border: 1px solid #DDD6C4; }
.ao-page-title { font-family: 'Shippori Mincho', serif; font-size: 26px; font-weight: 700; color: #14283F; line-height: 1.5; margin-bottom: 8px; }
.ao-page-meta { font-size: 11px; color: #aaa; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #DDD6C4; }

.ao-service-cta { max-width: 800px; margin: 0 auto; text-align: center; background: #14283F; border-radius: 10px; padding: 32px 24px; }
.ao-service-cta-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ao-service-cta-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 20px; }
.ao-service-cta-btn { display: inline-block; background: #A9BAC7; color: #14283F; font-size: 14px; font-weight: 700; padding: 10px 28px; border-radius: 20px; text-decoration: none; }
.ao-service-cta-btn:hover { background: #fff; }

/* ==============================
   お問い合わせフォーム(Contact Form 7)
============================== */
.ao-form-field { margin-bottom: 20px; }
.ao-form-field label { display: block; font-size: 13px; font-weight: 700; color: #14283F; margin-bottom: 8px; }
.ao-form-required { display: inline-block; background: #C1432E; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.ao-form-submit { text-align: center; margin-top: 32px; }

.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid #DDD6C4 !important;
  border-radius: 4px !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 14px !important;
  color: #333 !important;
  background: #fff !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s;
}
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
  outline: none !important;
  border-color: #223A5E !important;
}
.wpcf7-form-control.wpcf7-textarea { min-height: 160px; resize: vertical; }

.wpcf7-form-control.wpcf7-submit {
  display: inline-block !important;
  background: #223A5E !important;
  color: #fff !important;
  border: none !important;
  border-radius: 24px !important;
  padding: 14px 48px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: background 0.2s;
}
.wpcf7-form-control.wpcf7-submit:hover { background: #14283F !important; }
.wpcf7-spinner { margin-left: 12px; }

.wpcf7-not-valid-tip { color: #C1432E !important; font-size: 12px !important; margin-top: 6px; }
.wpcf7-form-control.wpcf7-not-valid { border-color: #C1432E !important; }

.wpcf7-response-output {
  border-radius: 4px !important;
  padding: 14px 18px !important;
  font-size: 13px !important;
  margin: 20px 0 0 !important;
}
.wpcf7 form.sent .wpcf7-response-output { border-color: #2C6B4C !important; color: #2C6B4C !important; background: #E8F1EC; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output { border-color: #C1432E !important; color: #C1432E !important; background: #FBEAE7; }

.ao-form-field br {
  display: none;
}
.ao-form-field p {
  margin: 0 !important;
}

/* ==============================
   404ページ
============================== */
.ao-404 { max-width: 600px; margin: 80px auto; padding: 24px; text-align: center; }
.ao-404-num { font-size: 120px; font-weight: 700; color: #F0ECE2; line-height: 1; margin-bottom: 8px; }
.ao-404-title { font-size: 22px; font-weight: 700; color: #14283F; margin-bottom: 12px; }
.ao-404-desc { font-size: 14px; color: #A9BAC7; line-height: 1.8; margin-bottom: 32px; }
.ao-404-btn { display: inline-block; background: #223A5E; color: #fff; font-size: 14px; font-weight: 700; padding: 12px 28px; border-radius: 20px; text-decoration: none; margin: 6px; }
.ao-404-btn:hover { background: #14283F; }
.ao-404-btn-sub { display: inline-block; color: #223A5E; font-size: 13px; text-decoration: underline; margin: 6px; }
.ao-404-label { font-size: 11px; color: #A9BAC7; letter-spacing: 0.1em; margin: 32px 0 12px; }
.ao-404-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.ao-404-tags a { background: #F0ECE2; color: #223A5E; font-size: 12px; padding: 6px 14px; border-radius: 20px; text-decoration: none; }
.ao-404-tags a:hover { background: #223A5E; color: #fff; }

/* ==============================
   フッター
============================== */
.ao-footer { background: #14283F; padding: 24px; color: #A9BAC7; font-size: 14px; margin-top: 48px; width: 100%; }
.ao-footer-inner { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

/* ==============================
   レスポンシブ
============================== */
@media (max-width: 900px) {
  .ao-archive-grid { grid-template-columns: 1fr 1fr; }
  .ao-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .ao-hamburger { display: flex; }
  .ao-nav { display: none; position: absolute; top: 90px; left: 0; right: 0; background: #fff; border-bottom: 2px solid #223A5E; z-index: 200; padding: 16px 24px; }
  .ao-nav.is-open { display: block; }
  .ao-nav ul { flex-direction: column; gap: 0; }
  .ao-nav ul li a { display: block; padding: 12px 0; border-bottom: 1px solid #DDD6C4; font-size: 14px; }
  .ao-nav ul li ul { display: block; position: static; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .ao-nav ul li ul li a { padding: 8px 0; font-size: 13px; }

  .ao-hero-slide { height: 320px !important; }
  .ao-hero-text-fixed { bottom: 24px; left: 20px; right: 20px; }
  .ao-hero-title { font-size: 28px !important; }

  .ao-hero { height: 280px; padding: 20px; }
  .ao-hotspot-slide { grid-template-columns: 1fr; }
  .ao-hotspot-body { padding: 20px; }
  .ao-hotspot-arrow { display: none; }
  .ao-latest-grid { grid-template-columns: repeat(2, 1fr); }
  .ao-area-band-inner { grid-template-columns: 1fr; }
  .ao-area-band.ao-rev .ao-area-band-inner { direction: ltr; }
  .ao-pickup4-grid { grid-template-columns: repeat(2, 1fr); }
  .ao-food-grid { grid-template-columns: repeat(2, 1fr); }
  .ao-link-band { flex-direction: column; }

  .ao-container { grid-template-columns: 1fr; padding: 16px; }
  .ao-sidebar { display: none; }
  .ao-post-nav { grid-template-columns: 1fr; }
  .ao-related-grid { grid-template-columns: 1fr; }
  .ao-archive-grid { grid-template-columns: 1fr 1fr; }
  .ao-article-title { font-size: 18px; }
  .ao-page-article { padding: 24px 20px; }
  .ao-footer-inner { flex-direction: column; align-items: flex-start; }
  .ao-footer-inner > div { text-align: left !important; }

  .ao-feature { grid-template-columns: 1fr; }
  .ao-sister-grid { grid-template-columns: 1fr; }

  .ao-banner-row-3 { grid-template-columns: 1fr; }
  .ao-banner-row-4 { grid-template-columns: repeat(2, 1fr); }
  .ao-banner-row-5 { grid-template-columns: repeat(2, 1fr); }
  .ao-banner-row-5 a:first-child { grid-column: 1 / -1; }

  .ao-entry-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ao-entry-content th, .ao-entry-content td { white-space: nowrap; min-width: 80px; }

  .ao-mobile-footer-widget { display: block; background: #fff; border-top: 1px solid #DDD6C4; padding: 24px 16px; }
  .ao-mobile-footer-inner { display: flex; flex-direction: column; gap: 24px; }
  .ao-mobile-section { display: flex; flex-direction: column; gap: 12px; }
}