@charset "UTF-8";
/* kusuri.net 新静的サイト共通スタイル
   旧サイト（Lightning Pro + Fortスキン）の見た目を再現する。
   キーカラー: #337ab7 / ダーク: #2e6da4 */
:root {
  --color-key: #337ab7;
  --color-key-dark: #2e6da4;
  --color-text: #333;
  --color-muted: #777;
  --color-border: #e5e5e5;
  --font-serif: "Hiragino Mincho ProN", "游明朝", YuMincho, "ＭＳ Ｐ明朝", serif;
  --font-sans: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: #fff;
}
img { max-width: 100%; height: auto; border: 0; }
a { color: var(--color-key); text-decoration: none; }
a:hover { color: var(--color-key-dark); text-decoration: underline; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 600; line-height: 1.4; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.text-center { text-align: center; }
.text-danger { color: #dc3545; }

/* ---- ボタン（Bootstrap4互換の必要分のみ） ---- */
.btn {
  display: inline-block; font-family: var(--font-sans); font-size: 1rem; line-height: 1.5;
  padding: .375rem .75rem; border: 1px solid transparent; border-radius: .25rem;
  text-align: center; cursor: pointer; text-decoration: none; transition: background-color .15s, border-color .15s;
}
.btn:hover { text-decoration: none; }
.btn-primary { color: #fff; background-color: var(--color-key); border-color: var(--color-key-dark); }
.btn-primary:hover { color: #fff; background-color: var(--color-key-dark); border-color: var(--color-key); }
.btn-info { color: #fff; background-color: #17a2b8; border-color: #17a2b8; }
.btn-info:hover { color: #fff; background-color: #138496; border-color: #117a8b; }
.btn-block { display: block; width: 100%; }
.btn-lg { padding: .5rem 1rem; font-size: 1.25rem; }
.btn-sm { padding: .25rem .5rem; font-size: .875rem; }

/* ---- ヘッダー最上段（白・全ページ共通） ---- */
.headerTop { background: #fff; border-bottom: 1px solid var(--color-border); font-size: 12px; }
.headerTop .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; min-height: 32px; }
.headerTop_description { margin: 0; color: #555; }
.headerTop nav ul { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.headerTop nav li { padding: 0 1em; border-left: 1px solid #ddd; }
.headerTop nav li:last-child { padding-right: 0; }
.headerTop nav a { color: #333; }

/* ---- ヘッダー本体 ---- */
.siteHeadContainer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; padding-top: 14px; padding-bottom: 10px; }
.siteHeader_logo { margin: 0; }
.siteHeader_logo img { max-height: 70px; width: auto; }
.siteHeader_sub { display: flex; align-items: center; gap: 22px; }
.contact_txt { margin: 0; line-height: 1.4; text-align: center; }
.contact_txt_catch { display: block; font-size: 12px; color: var(--color-muted); }
.contact_txt_tel { display: block; font-size: 26px; font-weight: bold; color: var(--color-key); }
.contact_txt_time { display: block; font-size: 11px; color: var(--color-muted); }
.contact_btn .btn-lg { font-size: 1.05rem; padding: .7rem 1.4rem; }

/* ---- グローバルナビ（スクロール追随） ---- */
.gMenu_outer {
  border-top: 1px solid var(--color-key-dark); border-bottom: 1px solid var(--color-border);
  width: 100%; background: #fff;
  position: sticky; top: 0; z-index: 900;
}
ul.gMenu { display: flex; list-style: none; margin: 0; padding: 0; }
ul.gMenu > li { flex: 1; text-align: center; border-left: 1px solid var(--color-border); }
ul.gMenu > li:last-child { border-right: 1px solid var(--color-border); }
ul.gMenu > li > a { display: block; padding: 10px 5px 8px; color: var(--color-text); text-decoration: none; }
.gMenu_name { display: block; font-family: var(--font-serif); font-weight: 600; font-size: 16px; }
.gMenu_description { display: block; font-size: 10px; color: var(--color-muted); letter-spacing: .08em; }
ul.gMenu > li > a:hover .gMenu_name, ul.gMenu > li > a:hover .gMenu_description { color: var(--color-key); }

/* ---- ページヘッダー帯 ---- */
.page-header {
  background: url(../img/page-header.jpg) no-repeat 50% center; background-size: cover;
  text-align: left;
}
.page-header_pageTitle {
  font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: #333;
  padding: 38px 0; margin: 0;
}

/* ---- パンくず ---- */
.breadSection { border-bottom: 1px solid var(--color-border); font-size: 12px; }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; margin: 0; padding: 8px 0; }
.breadcrumb li + li::before { content: "/"; margin: 0 .6em; color: #ccc; }
.breadcrumb a { color: var(--color-text); }
.breadcrumb a:hover { color: var(--color-key); }

/* ---- コンテンツ2カラム ---- */
.siteContent { padding: 30px 0 70px; }
.siteContent > .container > .row { display: flex; gap: 40px; align-items: flex-start; }
.mainSection { flex: 1; min-width: 0; }
.mainSection > *:first-child, .mainSection > .widget:first-child > *:first-child { margin-top: 0; }
.sideSection { width: 300px; flex-shrink: 0; position: sticky; top: 15px; }
@media (max-width: 991.98px) {
  .siteContent > .container > .row { display: block; }
  .sideSection { width: auto; margin-top: 50px; position: static; }
}

/* ---- 記事 ---- */
.entry-meta { font-size: 12px; color: var(--color-muted); margin-bottom: .5em; }
.entry-meta_items { margin-right: 1em; }
.entry-title { font-size: 28px; margin: 0 0 25px; }
h2 {
  background: #f7f7f7; border-top: 2px solid var(--color-key); border-bottom: 1px solid var(--color-border);
  padding: .55em .8em; font-size: 22px; margin: 1.8em 0 .9em;
}
h5 { font-size: 17px; margin: 2em 0 .6em; border-bottom: 1px solid var(--color-border); padding-bottom: .4em; }
dt { border-left: 4px solid var(--color-key); padding-left: .5em; }

/* ---- テーブル ---- */
table.table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.table th, .table td { padding: .75rem; border-top: 1px solid #dee2e6; text-align: left; vertical-align: top; font-weight: normal; }
.table-striped > tbody > tr:nth-of-type(odd), .table-striped > tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, .05); }
.approved-table th { width: 206px; white-space: nowrap; }
@media (max-width: 575.98px) {
  .approved-table th { width: 7.5em; white-space: normal; }
}

/* ---- 見積もり依頼フォーム（開閉） ---- */
.collapse { display: none; }
.collapse.show { display: block; }
#Quote_form h2 { margin-top: 1em; }
#Quote_form th { width: 30%; }
.form-control, input[type="text"], input[type="email"], textarea {
  font-family: var(--font-sans); font-size: 1rem; color: var(--color-text);
  width: 100%; max-width: 100%; padding: .375rem .75rem; border: 1px solid #ced4da; border-radius: .25rem; background: #fff;
}
textarea { min-height: 8em; }
input[type="radio"], input[type="checkbox"] { width: auto; margin-right: .3em; }
.form-item-label { margin-right: 1.2em; white-space: nowrap; display: inline-block; }
.form-notice {
  display: none; margin: 1em 0; padding: .8em 1em; border: 1px solid #f0ad4e; background: #fcf8e3; color: #8a6d3b; border-radius: .25rem;
}
.form-notice.show { display: block; }
.form-notice-success { border-color: #5cb85c; background: #eef7ee; color: #2d6a2d; }
.form-step-panel { border: 1px solid var(--color-border); background: #fff; padding: 20px 22px 24px; color: var(--color-text); }
.form-step-panel h2 { color: var(--color-text); }
.form-step-panel h2 { margin-top: 0; }
.form-confirm-table th { width: 30%; white-space: nowrap; }
.form-confirm-table td { white-space: pre-wrap; word-break: break-word; }
.form-step-buttons { display: flex; gap: 14px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.form-step-buttons .form-step-send { min-width: 240px; }
.btn-default { color: var(--color-text); background: #fff; border-color: #ccc; }
.btn-default:hover { background: #f0f0f0; }
.form-step-done { text-align: center; padding: 20px 0; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* ---- 関連ニュース・CTA（黒帯タイトル＋グレー地） ---- */
.related-news ul { padding-left: 1.4em; }
.veu_cta { margin-top: 50px; background: #e9e9e9; }
.cta_title { font-size: 18px; margin: 0; border-top: none; background: #1b1b1b; color: #fff; padding: 14px 25px; }
.cta_body { display: flex; flex-wrap: wrap; gap: 25px; align-items: flex-start; padding: 25px; }
.cta_body_txt { order: 0; flex: 1; min-width: 260px; }
.cta_body_image { order: 1; flex-shrink: 0; width: 336px; max-width: 100%; }
.cta_body_link { order: 2; width: 100%; }
@media (max-width: 700px) { .cta_body_image { width: 100%; } }

/* ---- サイドバー ---- */
.sideSection .widget { margin-bottom: 30px; }
.subSection-title {
  background: transparent; border-top: 3px solid var(--color-key); border-bottom: 1px solid var(--color-border);
  padding: .6em 0 .5em;
  font-size: 17px; margin: 0 0 15px;
}
.searchform div { display: flex; gap: 6px; }
.searchform input[type="text"] { flex: 1; }
.searchform input[type="submit"] {
  font-family: var(--font-sans); padding: .375rem .9rem; border: 1px solid var(--color-key-dark);
  border-radius: .25rem; background: var(--color-key); color: #fff; cursor: pointer;
}
.searchform input[type="submit"]:hover { background: var(--color-key-dark); }
.veu_button { margin-bottom: 12px; }
.button_subText { display: block; font-size: 11px; font-weight: normal; }
.widget-cta-side figure { margin: 0; }
.widget-cta-side img { display: block; width: 100%; height: auto; }

/* ---- フッター（ダーク） ---- */
.siteFooter { border-top: 3px solid var(--color-key); margin-top: 0; background: #1b1b1b; color: #ddd; }
.footerMenu { border-bottom: 1px solid #333; background: #141414; }
.footerMenu ul { display: flex; flex-wrap: wrap; justify-content: center; list-style: none; margin: 0; padding: 12px 0; font-size: 13px; }
.footerMenu li { margin: 0; padding: 0 1em; }
.footerMenu li + li { border-left: 1px solid #444; }
.footerMenu a { color: #eee; }
.footerWidget { padding: 40px 15px; display: flex; gap: 40px; flex-wrap: wrap; }
.footerWidget > div { flex: 1; min-width: 280px; }
.profile { display: block; }
.profile_media_outer { margin-bottom: 14px; }
.profile_media { width: 200px; height: auto; }
.profile_text { font-size: 13px; margin: 0; color: #ddd; }
.footer-form p { margin: 0 0 12px; font-size: 14px; }
.footer-form .subSection-title { background: transparent; border-top: none; border-bottom: 1px solid #444; color: #fff; padding-top: 0; }
.copySection-outer { background: #0d0d0d; }
.copySection { padding: 20px 15px 30px; font-size: 12px; color: #bbb; }
.copySection p { margin: 0; }

/* ---- モバイルナビ ---- */
.vk-mobile-nav-menu-btn {
  display: none; position: fixed; right: 15px; bottom: 15px; z-index: 1001;
  width: 60px; height: 60px; border-radius: 50%; background: var(--color-key); color: #fff;
  font-size: 11px; font-weight: bold; text-align: center; line-height: 60px; cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.vk-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(255,255,255,.98);
  padding: 30px 25px 90px; overflow-y: auto;
}
.vk-mobile-nav.open { display: block; }
.vk-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.vk-mobile-nav li { border-bottom: 1px solid var(--color-border); }
.vk-mobile-nav a { display: block; padding: 12px 5px; color: var(--color-text); }
/* モバイル用の画面下部固定ナビ（旧サイトのvk-mobile-fix-navを再現） */
.mobile-fix-nav {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: #fff; border-top: 1px solid var(--color-border);
  box-shadow: 0 -1px 4px rgba(0,0,0,.12);
}
.mobile-fix-nav a {
  flex: 1; text-align: center; padding: 7px 4px 6px; color: var(--color-key);
  font-size: 10px; text-decoration: none; border-left: 1px solid var(--color-border);
}
.mobile-fix-nav a:first-child { border-left: none; }
.mobile-fix-nav svg { display: block; width: 20px; height: 20px; margin: 0 auto 2px; }
.mobile-fix-nav span { display: block; line-height: 1.2; }

@media (max-width: 991.98px) {
  .gMenu_outer { display: none; }
  .vk-mobile-nav-menu-btn { display: block; bottom: 66px; }
  .mobile-fix-nav { display: flex; }
  body { padding-bottom: 56px; }
  .vk-mobile-nav { padding-bottom: 140px; }
  .siteHeadContainer { justify-content: center; text-align: center; }
  .siteHeader_sub { display: none; }
  .headerTop nav { display: none; }
  .headerTop .container { justify-content: center; }
}

/* ---- approved 一覧 ---- */
.approved-filter { margin-bottom: 30px; }
.approved-filter input {
  width: 100%; font-size: 1.05rem; padding: .55rem .9rem;
}
.approved-filter-note { font-size: 12px; color: var(--color-muted); margin-top: 6px; }
.approved-year-title { font-size: 20px; }
.approved-list { list-style: none; margin: 0; padding: 0; }
.approved-list li { border-bottom: 1px solid var(--color-border); padding: 12px 5px; }
.approved-list .item-date { display: inline-block; min-width: 8.5em; font-size: 13px; color: var(--color-muted); }
.approved-list .item-title { font-size: 15px; }
.approved-list .item-indication { display: block; font-size: 12px; color: var(--color-muted); margin-top: 2px; }
@media (min-width: 576px) { .approved-list .item-indication { margin-left: 8.5em; } }
.approved-noresult { display: none; color: var(--color-muted); padding: 20px 5px; }

/* ---- トップページ: キャンペーンテキスト帯（最上部） ---- */
.vk-campaign-text { color: #fff; font-size: 14px; text-align: center; padding: 9px 0; }
.vk-campaign-text_link { color: #fff; text-decoration: underline; font-weight: bold; }
.vk-campaign-text_link:hover { color: #fff; opacity: .85; }

/* ---- グローバルナビは全幅（ボーダーが画面端まで伸びる） ---- */
ul.gMenu { max-width: 1140px; margin: 0 auto; padding: 0 15px; }

/* ---- セクション見出し（グレー帯・h2と同スタイル） ---- */
.mainSection-title { margin-top: 1.6em; }
.mainSection > .widget:first-child .mainSection-title,
.mainSection > .widget:first-child > .entry-body > h2:first-child { margin-top: 0; }
.inline-icon { width: 1em; height: 1em; vertical-align: -0.12em; margin-right: .3em; }

/* ---- トップページ: カルーセル ---- */
.carousel { position: relative; overflow: hidden; }
.carousel-item { display: none; position: relative; }
.carousel-item.active { display: block; animation: carousel-fade .9s ease; }
@keyframes carousel-fade { from { opacity: 0; } to { opacity: 1; } }
.slide-item-img { display: block; width: 100%; height: auto; }
.slide-cover { position: absolute; inset: 0; }
.slide-text-set { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); }
.slide-text-set .slide-text { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.slide-text-title { font-family: var(--font-serif); font-size: 34px; font-weight: 600; line-height: 1.5; margin: 0 0 10px; }
.slide-text-caption { font-size: 16px; }
.slide-text-btn { margin-top: 14px; }
@media (max-width: 767.98px) {
  .slide-text-title { font-size: 20px; }
  .slide-text-caption { font-size: 12px; }
}
.carousel-indicators { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; list-style: none; margin: 0; padding: 0; z-index: 5; }
.carousel-indicators li { width: 26px; height: 5px; background: rgba(255,255,255,.7); border: 1px solid #999; cursor: pointer; }
.carousel-indicators li.active { background: var(--color-key); border-color: var(--color-key); }
.carousel-control-prev, .carousel-control-next { display: none; }

/* ---- トップページ: PRブロック・アコーディオン・お問い合わせ帯 ---- */
.prBlocks { display: flex; gap: 30px; text-align: center; margin: 35px 0; }
.prBlock { flex: 1; }
.prBlock a { display: block; color: var(--color-text); text-decoration: none; }
.prBlock a:hover { color: var(--color-key); }
.prBlock_icon_outer { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; color: var(--color-key); }
.prBlock_svg { width: 44px; height: 44px; }
.prBlock_title { font-size: 18px; margin: 0; }
@media (max-width: 767.98px) {
  .prBlocks { gap: 12px; }
  .prBlock_icon_outer { width: 64px; height: 64px; margin-bottom: 8px; }
  .prBlock_svg { width: 28px; height: 28px; }
  .prBlock_title { font-size: 13px; }
}
.panel-group .panel { border: 1px solid var(--color-border); margin-bottom: 10px; background: #fff; }
.panel-heading { background: #f5f5f5; padding: 0; }
.panel-title { margin: 0; font-size: 16px; border-top: none; padding-top: 0; }
.panel-title a { display: block; padding: 12px 15px; color: var(--color-text); text-decoration: none; }
.panel-title a:hover { color: var(--color-key); }
.panel-body { padding: 15px; }
.veu_contact { background: #fff; border: 1px solid var(--color-border); box-shadow: 0 0 0 4px #f5f5f5; margin: 45px 0 40px; }
.contact_frame { display: flex; align-items: center; justify-content: center; gap: 45px; padding: 28px 25px; flex-wrap: wrap; }
.contact_frame .contact_txt { text-align: center; }
.veu_contact .contact_txt_tel { font-size: 30px; }
.contact_bt { min-width: 300px; }
.contact_bt_txt { display: block; font-size: 18px; }
.contact_bt_subTxt { display: block; font-size: 11px; font-weight: normal; }
.wp-caption { max-width: 100%; }
.wp-caption img { max-width: 100%; height: auto; }
.wp-caption-text { font-size: 12px; color: var(--color-muted); }

/* ---- トップページ: FDA新薬承認情報テーブル（スマホはカード型に切替） ---- */
.approved-widget-table { font-size: 13px; }
.approved-widget-head th { background: var(--color-key); color: #fff; font-weight: bold; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.well { background: #f5f5f5; border: 1px solid var(--color-border); border-radius: 3px; padding: 10px; margin-top: 10px; }
@media (max-width: 767.98px) {
  .approved-widget-table thead { display: none; }
  .approved-widget-table, .approved-widget-table tbody { display: block; }
  .approved-widget-table tr {
    display: block; border: 1px solid var(--color-border); border-radius: 3px;
    margin-bottom: 10px; padding: 10px 12px; background: #fff !important;
  }
  .approved-widget-table td { display: block; border: none; padding: 2px 0; white-space: normal !important; }
  .approved-widget-table td::before {
    content: attr(data-label); display: inline-block; min-width: 5.5em;
    color: var(--color-muted); font-size: 11px;
  }
  .approved-widget-table td[data-label="医薬品名"] { font-weight: bold; }
}

/* ---- 子ページカード（service/company本文下） ---- */
.veu_childPage_list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.childPage_list_box {
  display: block; border: 1px solid var(--color-border); background: #fff;
  color: var(--color-text); text-decoration: none;
}
.childPage_list_box:hover { text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.childPage_list_box_inner { padding: 16px; display: flex; flex-direction: column; height: 100%; }
.childPage_list_title { font-size: 16px; margin: 0 0 10px; border-bottom: 1px solid var(--color-border); padding-bottom: .5em; }
.childPage_list_body { display: flex; flex-direction: column; flex: 1; }
.childPage_list_body img { display: block; margin: 0 auto 10px; width: 120px; height: 120px; object-fit: cover; border-radius: 3px; }
.childPage_list_text { font-size: 12px; color: var(--color-muted); margin: 0 0 12px; flex: 1; }
.childPage_list_more { margin-top: auto; align-self: flex-end; }
@media (max-width: 767.98px) { .veu_childPage_list { grid-template-columns: 1fr; } }

/* ---- サイドバーのセクションメニュー ---- */
.veu_childPages .subSection-title a { color: var(--color-text); }
.localNavi { list-style: none; margin: 0; padding: 0; }
.localNavi li { border-bottom: 1px dotted var(--color-border); }
.localNavi a { display: block; padding: 8px 2px 8px 1.1em; color: var(--color-text); position: relative; font-size: 14px; }
.localNavi a::before { content: ""; position: absolute; left: 2px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 6px; height: 6px; border-top: 2px solid var(--color-key); border-right: 2px solid var(--color-key); }
.localNavi a:hover { color: var(--color-key); text-decoration: none; }

/* ---- トップページ: お知らせタイルグリッド（先頭=最新を2×2の大タイルに） ---- */
.media-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 20px; }
@media (min-width: 768px) {
  .media-posts .media_post:first-child { grid-column: span 2; grid-row: span 2; }
  .media-posts .media_post:first-child .media_post_image { height: 100%; min-height: 368px; }
  .media-posts .media_post:first-child .media_post_title { font-size: 17px; }
  .media-posts .media_post:first-child .media_post_date { font-size: 12px; }
  .media_post, .media_post a { height: 100%; }
}
.media_post a { display: block; color: #fff; text-decoration: none; }
.media_post_image {
  position: relative; background-size: cover; background-position: center;
  height: 175px; overflow: hidden;
}
.media_post_image-none { background: #9aa4ad; }
.media_post_term {
  position: absolute; top: 0; right: 0; z-index: 2;
  color: #fff; font-size: 10px; padding: 2px .7em;
}
.media_post_overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 26px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));
}
.media_post_date { display: block; font-size: 11px; }
.media_post_title {
  display: block; font-size: 14px; font-weight: bold; line-height: 1.4;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.media_post a:hover .media_post_image { opacity: .88; }
@media (max-width: 767.98px) {
  .media-posts { grid-template-columns: repeat(2, 1fr); }
  .media_post_image { height: 150px; }
}
@media (max-width: 575.98px) {
  .media-posts { grid-template-columns: 1fr; }
  .media_post_image { height: 190px; }
}

/* ---- 旧サイトのカスタムCSS引継ぎ（サイトマップ内の承認薬一覧等を非表示） ---- */
.sitemap-approved { display: none; }
.sitemap-col .cat-item-17 { display: none; }
.widget_categories .cat-item-17 { display: none; }
.pager, .postNextPrev { display: none; }
.archive-title { margin-bottom: 25px; }
.archive-list { list-style: none; margin: 0; padding: 0; }
.archive-list li { border-bottom: 1px solid var(--color-border); }
.archive-item { display: grid; grid-template-columns: 170px 1fr; gap: 18px; padding: 16px 5px; color: var(--color-text); }
.archive-item:hover { text-decoration: none; background: #fafafa; }
.archive-item:hover .archive-item-title { color: var(--color-key); }
.archive-thumb { width: 170px; height: 105px; background-size: cover; background-position: center; border: 1px solid var(--color-border); }
.archive-thumb-none { background: #e9edf0 url(../../wp-content/uploads/2018/10/Kusurinet_logo_anime.gif) no-repeat center / 60% auto; background-blend-mode: multiply; }
.archive-meta { font-size: 12px; color: var(--color-muted); margin-bottom: 3px; }
.archive-item-title { display: block; font-size: 16px; font-weight: bold; }
.archive-excerpt { display: block; font-size: 12px; color: var(--color-muted); margin-top: 4px; }
@media (max-width: 575.98px) {
  .archive-item { grid-template-columns: 110px 1fr; gap: 12px; }
  .archive-thumb { width: 110px; height: 70px; }
  .archive-excerpt { display: none; }
}
.entry-body img { height: auto; }

/* ---- 統合検索結果 ---- */
.search-results { list-style: none; margin: 0; padding: 0; }
.search-results li { border-bottom: 1px solid var(--color-border); padding: 14px 5px; }
.search-category {
  display: inline-block; font-size: 11px; line-height: 1.6; color: #fff;
  background: var(--color-key); border-radius: 2px; padding: 0 .6em; margin-right: .8em; vertical-align: 2px;
}
.search-results .item-title { font-size: 15px; }
.search-date { font-size: 12px; color: var(--color-muted); margin-left: .8em; }
.search-results .item-indication { display: block; font-size: 12px; color: var(--color-muted); margin-top: 3px; }
