/*
Theme Name: 久田晃ブログ（見本レイアウト）
Template: swell
Version: 1.0
Description: デスクトップ見本と同じレイアウトの子テーマ（オレンジ×黄グラデ／角ゴW9＋明朝2箇所）
*/


/* ============ base ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; }
body {
  /* 構造テキストは全て角ゴW9。明朝は記事本文プレビューと吹き出しのみ */
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic StdN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #2b2b2b;
  background: #fffdf8;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
  /* 久田ブログ：オレンジ→黄グラデ */
  --g1: #ee7c0c;
  --g2: #f39c12;
  --g3: #ffcf33;
  --grad: linear-gradient(100deg, #ee7c0c 0%, #f39c12 48%, #ffcf33 100%);
  --grad-soft: linear-gradient(100deg, #fff3e0, #fff9e6);
  --green-d: #b3660a;
  --green-l: #fff3e0;
  --ink: #2b2b2b;
  --sub: #7d8a86;
  --line: #f0e2cc;
  --mincho: "Hiragino Mincho ProN","Hiragino Mincho Pro","YuMincho","Yu Mincho",serif;
}

/* グラデ文字の共通クラス（黒の控えめドロップシャドウ付き） */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.22));
}

/* W9見出し＋控えめな黒ドロップシャドウ */
.mid_ttl, .blog-heading__en, .side_ttl, .contact .clabel { font-weight: 900; }
.mid_ttl, .side_ttl { text-shadow: 0 1px 2px rgba(0,0,0,0.14); }

/* ============ header ============ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: #fff;
  border-bottom: 3px solid transparent;
  border-image: var(--grad) 1;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header .logo { display: flex; align-items: center; gap: 11px; }
.header .logo .logo-text { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; height: 46px; line-height: 1; }
.header .logo .frog {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  padding: 2px;
  background: var(--grad);
  flex-shrink: 0;
}
.header .logo .frog img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.header .logo .name { display: block; font-size: 1.9rem; font-weight: 900; letter-spacing: 0.04em; line-height: 1; }
.header .logo .tag { display: block; font-size: 1rem; color: var(--sub); font-weight: 500; letter-spacing: 0.08em; margin-top: 4px; line-height: 1; }
.header .logo .logo-img { height: 30px; width: auto; display: block; }

/* 右上：コーポレートサイト角ボタン */
.header .site_btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border: 2px solid var(--g2);
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--green-d);
  background: #fff;
  white-space: nowrap;
}
.header .site_btn:hover { background: var(--grad); color: #fff; border-color: transparent; }
.header .site_btn .site_btn_ico { display: none; width: 20px; height: 20px; }

/* ============ page head（実バナー画像ヒーロー・SP=2.png／PC=1.png） ============ */
.blog_head {
  position: relative;
  overflow: hidden;
  line-height: 0;
  background: #fff3e0;
}
.blog_head .hero_pic,
.blog_head .hero_img {
  display: block;
  width: 100%;
}
.blog_head .hero_img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1008 / 896; /* SP: 2.png の実比率 */
}
@media (min-width: 768px) {
  .blog_head .hero_img { aspect-ratio: 1723 / 491; } /* PC: 1.png の実比率 */
}

/* ============ layout ============ */
.blog_wrap { padding: 13px 0 100px; }
.blog_wrap .wrap {
  max-width: none;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.blog_box { width: 800px; max-width: 72%; }
.blog_side { flex-shrink: 0; width: 260px; }

/* ============ headings ============ */
.mid_ttl { font-size: 2.4rem; font-weight: 900; line-height: 1.4; }
.blog-heading { display: flex; flex-direction: column; gap: 2px; margin-bottom: 13px; }
.blog-heading__en { font-size: 2.4rem; font-weight: 900; line-height: 1.2; letter-spacing: 0.02em; }
.blog-heading__ja { font-size: 1.2rem; font-weight: 500; color: var(--sub); }

/* ============ blog card common ============ */
.blog_item a { display: block; }
.blog_item .img {
  position: relative;
  width: 100%;
  padding-top: 55.95%;
  margin-bottom: 14px;
  border-radius: 0;
  overflow: hidden;
}
.blog_item .img .thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: transform 0.4s ease-out;
}
.blog_item a:hover .thumb { transform: scale(1.07); }
.blog_item .img img.thumb-real { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease-out; }
.blog_item a:hover img.thumb-real { transform: scale(1.07); }
.blog_item a:hover .blog_txt { color: var(--g2); }
.blog_item .date_box { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 6px; align-items: center; }
.blog_item .date { flex-shrink: 0; font-size: 1.2rem; line-height: 1.3; color: var(--sub); font-weight: 500; }
.blog_item .tag_box { display: flex; flex-wrap: wrap; gap: 5px 8px; }
.blog_item .tag {
  font-size: 1.1rem; line-height: 1;
  padding: 5px 11px;
  background: var(--grad);
  color: #fff;
  border-radius: 0;
  font-weight: 900;
}
.blog_item .blog_txt {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: color 0.25s;
}

/* ============ pickup ============ */
.pickup_blog { margin-bottom: 68px; }
.pickup_blog .blog_item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(243,156,18,0.08);
}
.pickup_blog .blog_item .img { margin-bottom: 18px; }
.pickup_blog .blog_item .thumb { font-size: 1.8rem; }
.pickup_blog .blog_item .blog_txt { font-size: 2.1rem; -webkit-line-clamp: 2; }
.pickup_blog .blog_item .tag_box { margin-top: 10px; }

/* ============ article list (2col) ============ */
.blog_list_wrap .mid_ttl { margin-bottom: 30px; }
.blog_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px 45px;
}
.blog_list_wrap .blog_item { width: calc(50% - 23px); }

/* ============ pagination ============ */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 58px; }
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: 600;
}
.pagination .current { background: var(--grad); color: #fff; border: none; box-shadow: 0 4px 10px rgba(243,156,18,0.25); }
.pagination a:hover { border-color: var(--g2); color: var(--g2); }

/* ============ profile block (under list) ============ */
.profile_wrap { max-width: 820px; margin: 72px auto 0; padding: 0 20px; }
.profile_wrap .author_profile { margin-top: 0; }
.author_profile {
  margin-top: 68px;
  position: relative;
  background: #fff;
  border-radius: 0;
  padding: 38px 34px;
  box-shadow: 0 8px 26px rgba(243,156,18,0.09);
  overflow: hidden;
}
.author_profile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--grad);
}
.author_profile .head { display: flex; align-items: center; gap: 22px; margin-bottom: 22px; }
/* 四角ポートレート（本物のukeru-profileページ準拠。丸アイコンは使わない） */
.author_profile .avatar {
  flex-shrink: 0;
  width: 104px; height: 128px;
  border-radius: 2px;
  background: #ffe9cc;
  box-shadow: 6px 6px 0 #f39c12;
  position: relative;
  overflow: hidden;
}
.author_profile .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 9%;
  transform: scale(2.4);
  transform-origin: 50% 9%;
}
.author_profile .name_wrap .label {
  font-size: 1.1rem; font-weight: 900; letter-spacing: 0.14em;
}
.author_profile .name_wrap .pname { font-size: 2.3rem; font-weight: 900; margin: 2px 0 0; }
.author_profile .name_wrap .pname_en { font-size: 1.1rem; font-weight: 600; color: var(--sub); letter-spacing: 0.08em; margin: 2px 0 6px; }
.author_profile .name_wrap .role { font-size: 1.3rem; color: var(--sub); font-weight: 600; }
.author_profile .bio { font-size: 1.4rem; line-height: 1.95; font-weight: 400; }
.author_profile .bio p + p { margin-top: 14px; }
.author_profile .links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.author_profile .links a {
  padding: 11px 24px;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: 900;
}
.author_profile .links .primary { background: var(--grad); color: #fff; box-shadow: 0 4px 12px rgba(243,156,18,0.25); }
.author_profile .links .primary:hover { filter: brightness(1.05); }
.author_profile .links .ghost { border: 2px solid transparent; background: var(--grad-soft); color: var(--green-d); }
.author_profile .links .ghost:hover { filter: brightness(0.98); }

/* ============ sidebar ============ */
.search_box {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 18px;
  margin-bottom: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 3px 10px rgba(243,156,18,0.05);
}
.search_box .search_txt {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: inherit;
  background: transparent;
}
.search_box .search_txt::placeholder { color: var(--sub); }
.search_box .search_btn {
  flex-shrink: 0;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
}
.side_ttl {
  position: relative;
  padding-left: 18px;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.5;
}
.side_ttl::before {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  margin: auto;
  content: "";
  display: block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--grad);
}
.category .ttl_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.category .category_all a {
  display: block;
  padding: 5px 13px;
  border-radius: 0;
  font-size: 1.1rem;
  background: var(--grad-soft);
  color: var(--green-d);
  font-weight: 900;
}
.category .category_all a:hover { background: var(--grad); color: #fff; }
.category .tag_box { display: flex; flex-wrap: wrap; gap: 10px; }
.category .tag_box .tag a {
  display: block;
  padding: 7px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 900;
}
.category .tag_box .tag a:hover { background: var(--grad); border-color: transparent; color: #fff; }

.recommend, .ranking { margin-top: 60px; }
.recommend .side_ttl, .ranking .side_ttl { margin-bottom: 18px; }
.ranking .ttl_box { margin-bottom: 22px; }
.ranking .ttl_box .txt { margin-top: 8px; font-size: 1.2rem; line-height: 1.3; color: var(--sub); }
.blog_side .blog_list { flex-direction: column; gap: 30px; }
.blog_side .blog_list .blog_item { width: 100%; }
.blog_side .blog_list .blog_item .img { margin-bottom: 10px; }
.blog_side .blog_list .blog_item .blog_txt { font-size: 1.35rem; -webkit-line-clamp: 2; }

.ranking .blog_item .img { position: relative; }
.ranking .blog_item .img::before {
  position: absolute;
  z-index: 2;
  top: 0; left: 0;
  margin: 0;
  box-sizing: border-box;
  content: attr(data-rank);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: #f39c12;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 0;
  box-shadow: none;
}

/* ============ thumbnail placeholders ============ */
.t1 { background: linear-gradient(100deg, #ee7c0c, #ffcf33); }
.t2 { background: linear-gradient(100deg, #d9660a, #f39c12); }
.t3 { background: linear-gradient(100deg, #f0910f, #ffcf33); }
.t4 { background: linear-gradient(100deg, #ee7c0c, #f7b733); }
.t5 { background: linear-gradient(100deg, #f39c12, #ffcf33); }
.t6 { background: linear-gradient(100deg, #e07d0e, #ffd65c); }
.t7 { background: linear-gradient(100deg, #f2900f, #ffe08a); }
.t8 { background: linear-gradient(100deg, #ee7c0c, #ffd65c); }
.t9 { background: linear-gradient(100deg, #f0a021, #ffcf33); }
.t10 { background: linear-gradient(100deg, #d9660a, #ffcf33); }

/* コピーライト帯 */
.copybar {
  background: #2b1d08;
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 22px 20px;
  font-size: 1.15rem;
  font-weight: 900;
}
.copybar a { color: rgba(255,255,255,0.9); }
.copybar a:hover { text-decoration: underline; }
.copybar .privacy { margin-bottom: 7px; }
.copybar .rights { opacity: 0.82; letter-spacing: 0.04em; }
.sp-only { display: none; }
@media (max-width: 480px) {
  .copybar { padding: 20px 12px; }
  .copybar .rights { font-size: 0.95rem; letter-spacing: 0; }
  .sp-only { display: inline; }
}

/* ============ responsive ============ */
@media (max-width: 900px) {
  .blog_wrap .wrap { display: block; }
  .blog_box { width: 100%; max-width: 100%; }
  .blog_side { width: 100%; margin-top: 80px; }
}
@media (max-width: 600px) {
  .blog_list { gap: 34px 0; }
  .blog_list_wrap .blog_item { width: 100%; }
  .pickup_blog .blog_item .blog_txt { font-size: 1.7rem; }
  .header { padding: 10px 16px; }
  .header .site_btn { padding: 6px 10px; font-size: 0.95rem; }
  .author_profile .head { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .header .site_btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; }
  .header .site_btn .site_btn_txt { display: none; }
  .header .site_btn .site_btn_ico { display: block; }
}

/* ===== 記事詳細ビュー ===== */
.article_hero { width:100%; margin:18px 0 0; border-radius: 0; overflow:hidden; background:#ffe9cc; aspect-ratio:16/9; box-shadow:0 8px 24px rgba(243,156,18,0.12); }
.article_hero img { width:100%; height:100%; object-fit:cover; display:block; }
.article_body { padding: 6px 0 40px; }
.article_body .a_head { margin: 4px 0 36px; padding-bottom:30px; border-bottom:2px solid #e3efe0; }
.article_body .a_cat { display:inline-block; background: var(--grad); color:#fff; font-weight:900; font-size:1.15rem; padding:5px 16px; border-radius:0; margin-bottom:18px; }
.article_body .a_title { font-size: 3rem; font-weight:900; line-height:1.5; color:#1a2a20; }
.article_body .a_date { margin-top:14px; color: var(--sub); font-size:1.25rem; font-weight:600; }
.back_link { display:inline-block; font-size:1.35rem; font-weight:700; color: var(--g2); text-decoration:none; margin-bottom: 26px; }
.back_link.bottom { margin-top: 54px; margin-bottom:0; }
.back_link:hover { opacity:.65; }
.article_body img { max-width:100%; height:auto; border-radius: 0; }
.article_body .wp-block-image { margin: 2.4em 0; text-align:center; }
.article_body .swell-content-body { counter-reset: h2c; }
.article_body .swell-content-body h2 {
  display:block; width:100%;
  background: var(--grad); color:#fff !important;
  font-size:1.95rem; font-weight:900; line-height:1.4;
  padding:14px 22px;
  border:none; border-radius:0;
  text-shadow:0 2px 6px rgba(0,0,0,0.4);
  box-shadow:0 5px 14px rgba(243,156,18,0.18);
}
.article_body .swell-content-body h2::before {
  counter-increment: h2c; content: counter(h2c);
  display:inline-block; margin-right:13px; padding-right:13px;
  border-right:2px solid rgba(255,255,255,0.65);
  font-size:1em; font-weight:900;
}
.article_body .swell-content-body h3 { font-size:1.9rem; font-weight:900; color:#222; margin: 2em 0 1em; }
.article_body .swell-content-body { font-weight:400; }
.article_body .swell-content-body p,
.article_body .swell-content-body li,
.article_body .swell-content-body td { font-size:1.5rem; font-weight:400; }
.article_body .swell-content-body strong,
.article_body .swell-content-body b { font-weight:800; }
.article_body a { color: var(--g2); }
.pagination .dots { border:none; background:none; box-shadow:none; min-width:auto; padding:0 2px; }
/* ===== ヘッダー（ハンバーガー左・ロゴ中央・右にコーポレートボタン） ===== */
.header .logo { position:absolute; left:50%; transform:translateX(-50%); gap:0; }
.header .logo .frog { width:54px; height:54px; }
.hamburger { display:flex; flex-direction:column; justify-content:center; gap:5px; width:46px; height:40px; padding:8px; background:none; border:none; cursor:pointer; }
.hamburger span { display:block; height:3px; width:100%; background:var(--green-d); border-radius:2px; transition:.25s; }
.hamburger.open span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }
.drawer { position:absolute; top:100%; left:16px; z-index:300; width:300px; max-width:88vw; max-height:calc(100vh - 80px); max-height:calc(100dvh - 80px); overflow-y:auto; -webkit-overflow-scrolling:touch; background:#fff; box-shadow:0 14px 34px rgba(0,0,0,0.2); border-radius: 0; padding:8px 0 22px; display:none; }
.drawer.open { display:block; }
.drawer a { display:block; text-decoration:none; color:#1a2a20; }
.drawer .drawer_head { padding:15px 22px 7px; font-size:1.15rem; font-weight:900; color:#7a8a80; letter-spacing:.1em; }
.drawer .drawer_link + p.drawer_head { border-top:1px solid #edf2ed; margin-top:6px; }
.drawer .drawer_cats { display:flex; flex-wrap:wrap; gap:8px; padding:2px 20px 12px; }
.drawer .drawer_cats a { padding:8px 15px; font-size:1.32rem; font-weight:900; color:var(--green-d); background:#ffe9cc; border-radius: 0; }
.drawer .drawer_cats a:hover { background:var(--grad); color:#fff; }
.drawer .drawer_link { display:flex; align-items:center; gap:13px; padding:12px 22px; font-size:1.45rem; font-weight:900; color:#1a2a20; }
.drawer .drawer_link .di { width:22px; height:22px; flex:0 0 22px; display:inline-flex; align-items:center; justify-content:center; }
.drawer .drawer_link .di svg { width:100%; height:100%; display:block; }
.drawer .drawer_link:hover { background:#fff3e0; color:var(--g2); }
.drawer .drawer_top { border-bottom:1px solid #edf2ed; margin-bottom:4px; }
/* ===== コンテンツ幅（左右44pxのみ） ===== */
.blog_head .wrap, .blog_wrap .wrap { max-width:none; padding-left:44px; padding-right:44px; }
@media (min-width: 901px){
  .blog_box { width:auto; max-width:none; flex:1 1 auto; min-width:0; }
  .blog_side { width:320px; flex:0 0 320px; }
}
@media (max-width: 767px){
  .blog_wrap .wrap { padding-left:14px; padding-right:14px; }
}
@media (max-width: 767px){
  .article_hero { margin:0; border-radius:0; box-shadow:none; }
  .article_body .a_title { font-size:2.3rem; }
  .article_body { padding: 22px 0 52px; }
  .article_body .swell-content-body h2 { font-size:1.55rem; padding-left:16px; padding-right:16px; }
}

/* ============================================================
   WordPress実環境向けの追加調整（子テーマ専用）
   ============================================================ */
.pagination { flex-wrap: wrap; }
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 6px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink) !important;
  text-decoration: none !important;
}
.pagination a.page-numbers:hover {
  border-color: var(--g2);
  color: var(--g2) !important;
}
.pagination .page-numbers.current {
  background: var(--grad);
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 10px rgba(243,156,18,0.25);
}
.pagination .page-numbers.dots {
  border: none;
  background: none;
  box-shadow: none;
  min-width: auto;
  padding: 0 2px;
  color: var(--sub) !important;
}
.ranking.-norank .blog_item .img::before { display: none !important; }
.ranking.-norank { margin-top: 60px; }
.profile_wrap {
  position: relative;
  z-index: 1;
  clear: both;
  margin: 72px auto 0;
  padding-bottom: 96px;
}
body.admin-bar .header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .header { top: 46px; }
}
.blog_item .img img.thumb-real,
.article_hero img,
.ranking .blog_item .img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}
.article_hero img { position: static; display: block; }
.single .p-toc { display: none !important; }
.article_body .swell-content-body h2 { scroll-margin-top: 92px; }
.back_link.bottom { margin-top: 27px !important; }
.article_body { padding-bottom: 20px !important; }
.single .blog_wrap { padding-bottom: 50px; }
.article_body .swell-content-body > :last-child { margin-bottom: 12px !important; }
@media (max-width: 900px){
  .single .blog_side { margin-top: 30px; }
}
.pn_nav { display: flex; gap: 16px; margin: 34px 0 0; }
.pn_item { flex: 1; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #d9e6d9; border-radius: 0; padding: 12px 14px; text-decoration: none; color: var(--ink); box-shadow: 0 3px 10px rgba(243,156,18,0.08); transition: border-color .2s, box-shadow .2s; min-width: 0; }
.pn_item:hover { border-color: var(--g2); box-shadow: 0 6px 16px rgba(243,156,18,0.15); }
.pn_item.-next { flex-direction: row-reverse; text-align: right; }
.pn_thumb { flex: 0 0 86px; width: 86px; aspect-ratio: 16/9; border-radius: 0; overflow: hidden; background: #ffe9cc; }
.pn_thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pn_body { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.pn_label { font-size: 1.15rem; font-weight: 900; color: var(--g2); }
.pn_title { font-size: 1.3rem; font-weight: 900; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 600px){
  .pn_nav { flex-direction: column; gap: 10px; }
  .pn_item.-next { flex-direction: row; text-align: left; }
}

/* ============================================================
   久田ブログ 固有パーツ（吹き出し・かえる仕様準拠）
   明朝を当てるのはこの1箇所のみ。他は角ゴW9を維持。
   ============================================================ */
.hisada_bubble { display: flex; gap: 16px; align-items: flex-start; margin: 44px 0; }
.hisada_bubble .hb_icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid #f39c12;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.hisada_bubble .hb_icon img {
  position: absolute;
  width: 149px; height: 223px;
  left: -64px; top: -7px;
  max-width: none;
}
.hisada_bubble .hb_balloon {
  background: #fffbf0;
  border: 2px solid #f39c12;
  border-radius: 0 12px 12px 12px;
  padding: 18px 24px;
  font-family: var(--mincho);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.95;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

/* 久田フッター（4リンク・角ゴW9） */
.hisada_footlinks {
  max-width: 720px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.hisada_footlinks a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 0;
  background: var(--grad-soft);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 900;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.hisada_footlinks .ico { width: 26px; height: 26px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hisada_footlinks .ico svg { width: 24px; height: 24px; display: block; }
@media (max-width: 720px) {
  .hisada_footlinks { grid-template-columns: 1fr; max-width: 460px; }
}
.footcta { background: var(--grad); padding: 46px 24px; }

/* ============================================================
   単一記事ビュー（single-view）フォント規定
   明朝を当てるのは①本文の素の段落(p/li) ②吹き出しのセリフ本文のみ。
   枠(simple-box)・リンク・見出し・ラベル・まとめ・CTAは角ゴW9にリセット。
   ============================================================ */
.article_body .swell-content-body p,
.article_body .swell-content-body li,
.article_body .swell-content-body td {
  font-family: var(--mincho);
}
.article_body .swell-content-body .simple-box,
.article_body .swell-content-body .simple-box *,
.article_body .swell-content-body a,
.article_body .swell-content-body h2,
.article_body .swell-content-body h3,
.article_body .a_cat,
.article_body .a_title,
.article_body .a_date,
.article_body figcaption,
.article_body figcaption a {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic StdN", "Hiragino Kaku Gothic ProN", sans-serif;
}
/* 久田吹き出し（クラスなしのinlineセリフdiv）のセリフ本文のみ明朝 */
.article_body .swell-content-body div[style*="0 12px 12px 12px"] {
  font-family: var(--mincho);
  font-weight: 400;
}
#single-view .back_link { margin-top: 22px; }
#single-view .single_inner { max-width: 900px; margin: 0 auto; display: block; }


/* 記事一覧：カード間の余白を文字1行分ほど広げる */
.blog_list { row-gap: 78px; }
.blog_list_wrap .blog_item { margin-bottom: 8px; }
@media (max-width: 767px) { .blog_list { row-gap: 56px; } }

/* 本文の明朝を読みやすく（枠の中は対象外） */
.article_body .swell-content-body > p { font-weight: 500; color: #222; }
@media (max-width: 767px) {
  .article_body .swell-content-body > p { font-size: 1.7rem; line-height: 2.0; letter-spacing: .02em; }
  .simple-box, .simple-box p, .simple-box li, .simple-box span {
    font-size: 1.5rem !important; line-height: 1.9 !important; letter-spacing: 0 !important;
  }
}
