/* ==========================================================================
   style.css — web制作ノート グローバルスタイル
   ========================================================================== */

/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

/* ===== CSS VARIABLES ===== */
:root{
  --font-heading:'Plus Jakarta Sans','Noto Sans JP',sans-serif;
  --font-body:'Noto Sans JP','Plus Jakarta Sans',sans-serif;
  --font-mono:'JetBrains Mono','Fira Code',monospace;
  --ease-out-expo:cubic-bezier(0.16,1,0.3,1);
  --ease-spring:cubic-bezier(0.34,1.56,0.64,1);
  --content-width:720px;
}

[data-theme="dark"]{
  --bg:#111110;
  --bg-card:#111113;
  --bg-card-hover:#17171A;
  --bg-elevated:#1A1A1E;
  --bg-code:#0D0D12;
  --bg-code-header:#161620;
  --text-primary:#d7d7d8;
  --text-secondary:#8E8EA0;
  --text-tertiary:#5A5A6E;
  --accent:#F59E0B;
  --accent-soft:rgba(245,158,11,0.1);
  --accent-medium:rgba(245,158,11,0.2);
  --accent-glow:rgba(245,158,11,0.06);
  --border:rgba(255,255,255,0.1);
  --border-hover:rgba(255,255,255,0.12);
  --glow:rgba(245,158,11,0.04);
  --code-keyword:#C084FC;
  --code-string:#34D399;
  --code-func:#60A5FA;
  --code-comment:#5A5A6E;
  --code-tag:#F472B6;
  --code-attr:#FCD34D;
}

[data-theme="light"]{
  --bg:#FAFAF8;
  --bg-card:#FFFFFF;
  --bg-card-hover:#F5F5F2;
  --bg-elevated:#EEEEEA;
  --bg-code:#F4F4F0;
  --bg-code-header:#E8E8E4;
  --text-primary:#1A1A1E;
  --text-secondary:#6E6E7A;
  --text-tertiary:#9E9EA8;
  --accent:#D97706;
  --accent-soft:rgba(217,119,6,0.08);
  --accent-medium:rgba(217,119,6,0.15);
  --accent-glow:rgba(217,119,6,0.04);
  --border:rgba(0,0,0,0.06);
  --border-hover:rgba(0,0,0,0.12);
  --glow:rgba(217,119,6,0.03);
  --code-keyword:#7C3AED;
  --code-string:#059669;
  --code-func:#2563EB;
  --code-comment:#9CA3AF;
  --code-tag:#DB2777;
  --code-attr:#B45309;
}

/* ===== BASE ===== */
html{
  font-size:16px;
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text-primary);
  font-family:var(--font-body);
  line-height:1.7;
  transition:background .5s var(--ease-out-expo),color .5s var(--ease-out-expo);
  overflow-x:hidden;
}
body::before{
  content:'';position:fixed;inset:0;z-index:9999;pointer-events:none;
  opacity:.015;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat:repeat;background-size:256px;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress{
  position:fixed;
  top:0;left:0;
  height:2px;
  width:100%;
  background:var(--accent);
  z-index:200;
  transform-origin:left;
  transform:scaleX(0);
  transition:none;
}

/* ===== BODY CONTAINER ===== */
.body-container{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* ===== HEADER ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:color-mix(in srgb,var(--bg) 85%,transparent);
  backdrop-filter:blur(20px) saturate(1.2);
  -webkit-backdrop-filter:blur(20px) saturate(1.2);
  border-bottom:1px solid var(--border);
  padding:0 clamp(1.5rem,5vw,4rem);
  transition:background .5s var(--ease-out-expo);
}

.header-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
}

/* ===== LOGO ===== */
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}
.logo{
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:12px;
  transition:opacity .3s;
}

.logo-mark{
  width:40px;height:40px;
  border-radius:10px;
  border:2px solid var(--accent);
  background:transparent;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:border-color .3s;
}
.logo-mark-inner{
  font-family:var(--font-mono);
  font-weight:700;
  font-size:13px;
  color:var(--accent);
  line-height:1;
  letter-spacing:2px;
  transition:color .3s;
}
.logo-text-group{display:flex;flex-direction:column;gap:2px}
.logo-text{
  font-family:var(--font-heading);
  font-weight:800;
  font-size:1.1rem;
  letter-spacing:-0.035em;
  color:var(--text-primary);
  line-height:1;
  display:flex;align-items:center;
}
.logo-sub{
  font-family:var(--font-body);
  font-weight:400;
  font-size:.6rem;
  color:var(--text-tertiary);
  letter-spacing:.02em;
}
.logo-cursor{
  display:inline-block;
  width:2px;height:17px;
  background:var(--accent);
  vertical-align:middle;
  margin-left:3px;
  animation:blink 1s step-end infinite;
}

/* ===== NAV ===== */
.nav{
  display:flex;
  align-items:center;
  gap:1.5rem;
}

.nav a{
  font-family:var(--font-heading);
  font-size:.8rem;
  font-weight:500;
  color:var(--text-secondary);
  text-decoration:none;
  position:relative;
  transition:color .3s;
}
.nav a::after{
  content:'';
  position:absolute;
  bottom:-4px;left:0;
  width:0;height:2px;
  background:var(--accent);
  transition:width .3s var(--ease-out-expo);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle{
  width:40px;height:24px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  background:var(--bg-elevated);
  position:relative;
  transition:background .3s;
  flex-shrink:0;
}
.theme-toggle::after{
  content:'';
  position:absolute;
  top:3px;left:3px;
  width:18px;height:18px;
  border-radius:50%;
  background:var(--accent);
  transition:transform .4s var(--ease-spring);
}
[data-theme="light"] .theme-toggle::after{transform:translateX(16px)}

/* ===== BREADCRUMB ===== */
.breadcrumb{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:.75rem clamp(1.5rem,5vw,4rem);
  font-family:var(--font-heading);
  font-size:.75rem;
  color:var(--text-tertiary);
  text-align:left;
}
.breadcrumb a{
  color:var(--text-tertiary);
  text-decoration:none;
  transition:color .3s;
}
.breadcrumb-sep{opacity:.4}

/* ===== FOOTER (replaced by TASK-01) ===== */

/* ===== TAGS ===== */
.tag:not(code .tag) {
  font-family:var(--font-heading);
  font-size:.75rem;
  font-weight:600;
  padding:4px 14px;
  border-radius:100px;
  transition:all .3s var(--ease-out-expo);
  display:inline-block;
}
.tag--accent{background:var(--accent-soft);color:var(--accent)}
.tag--muted{background:var(--bg-elevated);color:var(--text-secondary)}

/* ===== STATS ===== */
.stat{
  display:flex;
  align-items:center;
  gap:5px;
  font-family:var(--font-heading);
  font-size:.8rem;
  color:var(--text-tertiary);
}
.stat svg{width:14px;height:14px;opacity:.6}
.stat--accent{color:var(--accent)}
.stat--accent svg{opacity:1}

/* ===== REVEAL ANIMATION ===== */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s var(--ease-out-expo),transform .7s var(--ease-out-expo);
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* ===== BUTTONS ===== */
a.btn,
button.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 32px;
  border-radius:100px;
  background:var(--accent-soft);
  color:var(--accent);
  border:1px solid var(--accent-medium);
  font-family:var(--font-heading);
  font-size:.85rem;
  font-weight:600;
  text-decoration:none !important;
  cursor:pointer;
  transition:all .4s var(--ease-out-expo);
  position:relative;
  overflow:hidden;
}
.btn::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--accent);
  border-radius:100px;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .4s var(--ease-out-expo);
  z-index:0;
}
.btn__label{
  position:relative;
  z-index:1;
}

.btn-link{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  color:var(--accent);
  font-family:var(--font-heading);
  font-size:.875rem;
  font-weight:500;
  text-decoration:none;
  transition:opacity .3s;
}

/* ===== LEGACY COMPATIBILITY ===== */
/* 既存クラスへの新デザイン適用（互換性維持） */
.g-heading{
  font-family:var(--font-heading);
  font-weight:700;
  letter-spacing:-0.025em;
  color:var(--text-primary);
}

/* ===== LAYOUT WRAPPERS (共通) ===== */
.articleSec,
.generalmg{
  max-width:1200px;
  margin:0 auto;
  padding:2rem clamp(1.5rem,5vw,4rem);
}
.articleSec+.articleSec{
  margin-top: clamp( 50px, 6vw, 80px);
}
.inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 clamp(1.5rem,5vw,4rem);
}
.btnContainer{
  text-align:center;
  margin-top:2rem;
}
#main{padding-bottom:4rem}

/* ===== ARTICLE CARD CONTENT (item-blog.php 共通) ===== */

/* サムネイルリンクラッパー */
.article__thumb{
  display:block;
  margin:0;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  position:relative;
}
.article__thumb a{
  display:block;
  width:100%;height:100%;
}
.article__thumb img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}

/* カテゴリバッジ (サムネイル内) */
.article__cat{
  position:absolute;top:10px;left:10px;
  display:flex;gap:.4rem;flex-wrap:wrap;
  list-style:none;margin:0;padding:0;
  z-index:2;
}
.article__cat li a{
  display:inline-block;
  font-family:var(--font-heading);
  font-size:.65rem;font-weight:700;
  padding:3px 10px;
  border-radius:100px;
  background:color-mix(in srgb,var(--bg) 80%,transparent);
  backdrop-filter:blur(6px);
  color:var(--text-primary);
  text-decoration:none;
  border:1px solid var(--border);
}

/* ブックマークボタン (カードサムネイル内) */
.article__bookmark,
.article__thumb .bookmark-btn{
  position:absolute;top:10px;right:10px;
  width:34px;height:34px;
  border-radius:50%;
  background:color-mix(in srgb,var(--bg) 70%,transparent);
  backdrop-filter:blur(8px);
  border:1px solid var(--border);
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all .3s var(--ease-out-expo);
  z-index:2;
  font-size:.75rem;
  color:var(--text-primary);
  padding:0;
}
.article__bookmark.is-bookmarked,
.article__thumb .bookmark-btn.is-bookmarked{background:var(--accent);border-color:var(--accent);color:#09090B}

/* ブックマークカウント */

/* 日付 */
.article__date{
  font-family:var(--font-heading);
  font-size:.75rem;
  color:var(--text-tertiary);
  display:block;
  flex: 1;
}

/* タイトル */
.article__ttl{
  font-family:var(--font-heading);
  font-size:1.05rem;font-weight:600;
  letter-spacing:-0.02em;
  line-height:1.5;
  margin-bottom:.75rem;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.article__ttl a{
  color:var(--text-primary);
  text-decoration:none;
}

/* タグ */
.article__tags{
  display:flex;gap:.4rem;flex-wrap:wrap;
  list-style:none;padding:0;
}
.article__tags li a{
  font-family:var(--font-heading);
  font-size:.7rem;
  padding:3px 10px;
  border-radius:100px;
  background:var(--accent-soft);
  color:var(--accent);
  border:1px solid var(--accent-medium);
  text-decoration:none;
  display:inline-block;
  transition:border-color .3s,color .3s,background .3s;
}

/* ===== NAV DROPDOWN (BUG-04) ===== */
.nav-item{position:relative;display:flex;align-items:center}

.nav-item--dropdown > a::after{
  content:'';
  display:inline-block;
  width:6px;
  height:6px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(0deg);
  margin-left:10px;
  opacity:.5;
  transition:transform .3s;
}
.nav-item--dropdown.is-open > a::after{
  margin-left: 0;
  transform:rotate(-180deg);
  opacity:1;
}

.nav-item--dropdown{padding-bottom:12px;margin-bottom:-12px}
.nav-dropdown{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%) translateY(-4px);
  min-width:160px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:.5rem;
  display:flex;flex-direction:column;gap:2px;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s var(--ease-out-expo),transform .25s var(--ease-out-expo);
  z-index:200;
  box-shadow:0 16px 40px -8px rgba(0,0,0,.4);
}
.nav-item--dropdown.is-open .nav-dropdown{
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.nav-dropdown a{
  display:block;
  padding:.5rem .9rem;
  border-radius:8px;
  font-family:var(--font-heading);
  font-size:.8rem;font-weight:500;
  color:var(--text-secondary);
  text-decoration:none;
  transition:background .2s,color .2s;
  white-space:nowrap;
}
.nav-dropdown a::after{display:none!important}

/* ===== SEARCH TOGGLE BUTTON ===== */
.search-toggle{
  width:36px;height:36px;
  border-radius:10px;
  border:1px solid var(--border);
  background:transparent;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  color:var(--text-secondary);
  transition:all .3s var(--ease-out-expo);
  flex-shrink:0;
}

/* ===== SEARCH OVERLAY (BUG-03) ===== */
.search-overlay{
  position:fixed;
  top:0;left:0;right:0;
  z-index:300;
  background:color-mix(in srgb,var(--bg) 95%,transparent);
  backdrop-filter:blur(20px);
  padding:1.5rem clamp(1.5rem,5vw,4rem);
  transform:translateY(-100%);
  opacity:0;
  transition:transform .35s var(--ease-out-expo),opacity .35s;
  pointer-events:none;
  border-bottom:1px solid var(--border);
}
.search-overlay.is-open{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.search-overlay__inner{
  max-width:720px;
  margin:0 auto;
  display:flex;align-items:center;gap:1rem;
}

.search-overlay__form{
  flex:1;
  display:flex;align-items:center;gap:.75rem;
  background:var(--bg-elevated);
  border:1px solid var(--border);
  border-radius:12px;
  padding:.75rem 1.25rem;
  transition:border-color .3s;
}
.search-overlay__form:focus-within{border-color:var(--accent)}

.search-overlay__icon{
  color:var(--text-tertiary);
  flex-shrink:0;
}

.search-overlay__input{
  flex:1;
  background:transparent;
  border:none;
  outline:none;
  font-family:var(--font-heading);
  font-size:1rem;
  color:var(--text-primary);
}
.search-overlay__input::placeholder{color:var(--text-tertiary)}

.search-overlay__submit{
  background:transparent;
  border:none;
  cursor:pointer;
  color:var(--text-tertiary);
  display:flex;align-items:center;
  padding:4px;
  border-radius:6px;
  transition:color .3s,background .3s;
}

.search-overlay__close{
  width:40px;height:40px;
  border-radius:10px;
  border:1px solid var(--border);
  background:transparent;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  color:var(--text-secondary);
  transition:all .3s;
  flex-shrink:0;
}

/* ===== FOOTER NAV (BUG-02 / replaced by TASK-01) ===== */

/* ===== BREADCRUMB 構造修正 (BUG-08) ===== */
.breadcrumbs{
  display:flex;align-items:center;flex-wrap:wrap;
  list-style:none;padding:0;margin:0;
  gap:.25rem;
}
.breadcrumbs li{display:flex;align-items:center}
.breadcrumbs li:not(:last-child)::after{
  content:'›';
  margin:0 .35rem;
  opacity:.35;
  font-size:1rem;
  line-height:1;
}

/* ===== THUMBNAIL IMG OVERRIDE (BUG-06) ===== */
.article__thumbContainer img,
.card-thumb img{
  width:100%;
  height:100%!important;
  object-fit:cover!important;
  display:block;
}
/* imgauto override inside card thumbs */
.article__thumbContainer .imgauto,
.card-thumb .imgauto{
  width:100%;
  height:100%!important;
  object-fit:cover!important;
}

/* ===== BOOKMARK SVG ICON TOGGLE (BUG-05) ===== */
.bm-icon--filled{display:none}
.is-bookmarked .bm-icon--empty{display:none}
.is-bookmarked .bm-icon--filled{display:block}

/* カード内のブックマークボタンにテキストは非表示 */
.article__bookmark span{display:none}

/* ===== VIEW COUNT & BOOKMARK COUNT ON CARDS ===== */
.article__meta-row{
  display:flex;align-items:center;gap:.75rem;
  margin-bottom:.5rem;
}
.article__view-count,
.article__bm-count{
  display:flex;align-items:center;gap:3px;
  font-family:var(--font-heading);
  font-size:.7rem;
  color:var(--text-tertiary);
}
.article__view-count svg,
.article__bm-count svg{opacity:.6}

/* ===== G-HEADING COUNT (BUG-19) ===== */
.g-heading__count{
  font-family:var(--font-heading);
  font-size:.8rem;
  font-weight:400;
  color:var(--text-tertiary);
  margin-left:.75rem;
  letter-spacing:0;
}

/* ===== TAG CLOUD (BUG-11) ===== */
.tag-cloud-section{border-top:1px solid var(--border);padding-top:2rem}
.tag-cloud-title{
  font-family:var(--font-heading);
  font-size:.75rem;font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--text-tertiary);
  margin-bottom:1rem;
}
.tag-cloud{display:flex;gap:.5rem;flex-wrap:wrap;justify-content: center; margin-top: 30px;}
.tag-cloud__item{
  display:inline-flex;align-items:center;gap:.3rem;
  font-family:var(--font-heading);
  font-size:.75rem;
  padding:4px 12px;
  border-radius:100px;
  border:1px solid var(--border);
  color:var(--text-secondary);
  text-decoration:none;
  transition:all .25s var(--ease-out-expo);
}
.tag-cloud__count{font-size:.65rem;color:var(--text-tertiary)}

/* ===== HAMBURGER BUTTON (BUG-20) ===== */
.menu-toggle{
  display:none;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
  width:36px;height:36px;
  border-radius:10px;
  border:1px solid var(--border);
  background:transparent;
  cursor:pointer;
  flex-shrink:0;
  transition:border-color .3s;
}
.menu-toggle__bar{
  display:block;
  width:16px;height:1.5px;
  background:var(--text-secondary);
  border-radius:2px;
  transition:transform .3s var(--ease-out-expo),opacity .3s;
  transform-origin:center;
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.menu-toggle.is-open .menu-toggle__bar:nth-child(2){opacity:0;transform:scaleX(0)}
.menu-toggle.is-open .menu-toggle__bar:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ===== MOBILE MENU (BUG-20) ===== */
.mobile-menu{
  position:fixed;
  top:64px;left:0;right:0;bottom:0;
  z-index:250;
  background:color-mix(in srgb,var(--bg) 97%,transparent);
  backdrop-filter:blur(20px);
  transform:translateX(-100%);
  opacity:0;
  transition:transform .35s var(--ease-out-expo),opacity .35s;
  pointer-events:none;
  overflow-y:auto;
  padding:2rem clamp(1.5rem,5vw,3rem);
}
.mobile-menu.is-open{
  transform:translateX(0);
  opacity:1;
  pointer-events:auto;
}
body.menu-open{overflow:hidden}

.mobile-menu__nav{display:flex;flex-direction:column}
.mobile-menu__link{
  font-family:var(--font-heading);
  font-size:1.2rem;font-weight:700;
  color:var(--text-primary);
  text-decoration:none;
  padding:.75rem 0;
  border-bottom:1px solid var(--border);
  letter-spacing:-0.02em;
  transition:color .3s;
}

.mobile-menu__cats{
  display:flex;flex-wrap:wrap;gap:.5rem;
  padding:.75rem 0 1rem;
  border-bottom:1px solid var(--border);
}
.mobile-menu__cats a{
  font-family:var(--font-heading);
  font-size:.8rem;
  padding:5px 14px;
  border-radius:100px;
  border:1px solid var(--border);
  color:var(--text-secondary);
  text-decoration:none;
  transition:all .25s;
}

/* ===== FOOTER ===== */
.site-footer{
  margin-top:auto;
  padding:4rem 0 2rem;
  border-top:1px solid var(--border);
}
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 clamp(1.5rem,5vw,4rem);
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:3rem;
  margin-bottom:3rem;
}
.footer-brand{display:flex;flex-direction:column;gap:.75rem}
.footer-logo{
  display:flex;align-items:center;gap:10px;
  text-decoration:none;color:var(--text-primary);
}
.footer-logo-mark{
  font-family:var(--font-mono);
  font-weight:700;font-size:14px;
  color:var(--accent);
  width:36px;height:36px;
  border-radius:9px;
  border:2px solid var(--accent);
  display:flex;align-items:center;justify-content:center;
  letter-spacing:1.5px;
}
.footer-logo-text{
  font-family:var(--font-heading);
  font-weight:800;font-size:1.1rem;
  letter-spacing:-.03em;
}
.footer-tagline{
  font-size:.8rem;
  color:var(--text-tertiary);
}
.footer-links-title{
  font-family:var(--font-heading);
  font-size:.7rem;font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--text-tertiary);
  margin-bottom:1rem;
}
.footer-links-nav{
  display:flex;flex-direction:column;gap:.6rem;
}
.footer-links-nav a{
  font-size:.85rem;
  color:var(--text-secondary);
  text-decoration:none;
  transition:color .3s;
}
.footer-bottom{
  padding-top:2rem;
  display:flex;justify-content:space-between;align-items:center;
}
.footer-copy{
  font-family:var(--font-heading);
  font-size:.75rem;
  color:var(--text-tertiary);
}
.footer-note{
  font-size:.7rem;
  color:var(--text-tertiary);
  opacity:.6;
}

/* ===== PROFILE PAGE ===== */
.profile-page{
  flex:1;
}
.profile-inner{
  max-width:800px;
  margin:0 auto;
  padding:3rem clamp(1.5rem,5vw,4rem) 6rem;
}
.profile-hero{
  text-align:center;
  margin-bottom:4rem;
}
.profile-avatar{
  width:120px;height:120px;
  border-radius:50%;
  border:3px solid var(--accent);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.5rem;
  background:var(--bg-card);
  font-family:var(--font-mono);
  font-size:2rem;font-weight:700;
  color:var(--accent);
}
.profile-name{
  font-family:var(--font-heading);
  font-size:2rem;font-weight:800;
  letter-spacing:-.04em;
  margin-bottom:.5rem;
}
.profile-role{
  font-size:.95rem;
  color:var(--text-secondary);
  margin-bottom:1rem;
}
.profile-tagline{
  font-size:.85rem;
  color:var(--text-tertiary);
  max-width:500px;
  margin:0 auto;
}
.profile-section{
  margin-bottom:3rem;
}
.profile-section-title{
  font-family:var(--font-heading);
  font-size:.7rem;font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--accent);
  margin-bottom:1.25rem;
  display:flex;align-items:center;gap:.75rem;
}
.profile-section-title::after{
  content:'';flex:1;height:1px;
  background:var(--border);
}
.profile-text{
  font-size:.9rem;
  color:var(--text-secondary);
  line-height:1.9;
}
.profile-text p{margin-bottom:1rem}
.skill-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}
.skill-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:1.25rem;
  transition:all .4s var(--ease-out-expo);
}
.skill-card-title{
  font-family:var(--font-heading);
  font-size:.85rem;font-weight:700;
  margin-bottom:.5rem;
  display:flex;align-items:center;gap:.5rem;
}
.skill-card-title .dot{
  width:8px;height:8px;
  border-radius:50%;
  background:var(--accent);
  flex-shrink:0;
}
.skill-card-items{
  font-size:.8rem;
  color:var(--text-tertiary);
  line-height:1.8;
}
.blog-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-bottom:2rem;
}
.stat-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:1.25rem;
  text-align:center;
}
.stat-value{
  font-family:var(--font-heading);
  font-size:1.8rem;font-weight:800;
  color:var(--accent);
  letter-spacing:-.03em;
}
.stat-label{
  font-size:.7rem;
  color:var(--text-tertiary);
  margin-top:.25rem;
}
.career-item{
  display:flex;gap:1.5rem;
  padding:1.25rem 0;
  border-bottom:1px solid var(--border);
}
.career-item:last-child{border-bottom:none}
.career-period{
  font-family:var(--font-mono);
  font-size:.75rem;
  color:var(--text-tertiary);
  white-space:nowrap;
  min-width:100px;
  padding-top:2px;
}
.career-content{flex:1}
.career-title{
  font-family:var(--font-heading);
  font-size:.9rem;font-weight:700;
  margin-bottom:.25rem;
}
.career-desc{
  font-size:.8rem;
  color:var(--text-secondary);
  line-height:1.7;
}
.profile-cta{
  text-align:center;
  margin-top:2rem;
}
.profile-cta-btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:14px 36px;
  border-radius:100px;
  background:var(--accent);
  color:#09090B;
  font-family:var(--font-heading);
  font-size:.9rem;font-weight:700;
  text-decoration:none;
  transition:all .4s var(--ease-out-expo);
}

/* ===== CONTACT PAGE ===== */
.contact-page{
  flex:1;
}
.contact-inner{
  max-width:640px;
  margin:0 auto;
  padding:3rem clamp(1.5rem,5vw,4rem) 6rem;
}
.contact-intro{
  text-align:center;
  margin-bottom:3rem;
}
.contact-title{
  font-family:var(--font-heading);
  font-size:2rem;font-weight:800;
  letter-spacing:-.04em;
  margin-bottom:.75rem;
}
.contact-desc{
  font-size:.9rem;
  color:var(--text-secondary);
  max-width:500px;
  margin:0 auto;
}
.contact-form-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:2.5rem;
  margin-bottom:1.5rem;
}
.contact-note{
  font-size:.75rem;
  color:var(--text-tertiary);
  text-align:center;
}

/* ===== SNOW MONKEY FORMS ダークテーマ完全上書き ===== */

/* フォーム全体のベース */
.snow-monkey-form{
  color:var(--text-primary);
}

/* ---- プログレストラッカー ---- */
/* プラグイン既定の::before（接続線）を無効化 */
.smf-progress-tracker__item::before{
  display:none !important;
  content:none !important;
}
.smf-progress-tracker{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:0;
  list-style:none;
  padding:0;
  margin-bottom:2rem;
  position:relative;
}
.smf-progress-tracker__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.4rem;
  position:relative;
  flex:1;
  max-width:140px;
}
/* ステップ間のライン（::afterで独自実装） */
.smf-progress-tracker__item:not(:last-child)::after{
  content:'';
  position:absolute;
  top:15px;
  left:calc(50% + 18px);
  right:calc(-50% + 18px);
  height:1px;
  background:var(--border);
  z-index:0;
}
.smf-progress-tracker__item__number{
  width:32px;height:32px;
  border-radius:50%;
  border:2px solid var(--border);
  background:var(--bg-card);
  color:var(--text-tertiary);
  font-family:var(--font-heading);
  font-size:.8rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  position:relative;
  z-index:1;
  transition:all .3s;
}
.smf-progress-tracker__item__text{
  font-family:var(--font-heading);
  font-size:.65rem;
  color:var(--text-tertiary);
  white-space:nowrap;
  text-align:center;
}
/* screen-reader-text は非表示 */
.smf-progress-tracker__item__text .screen-reader-text{
  position:absolute;
  width:1px;height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
}
/* アクティブステップ（aria-current="true"またはJS付与クラス） */
.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__number{
  border-color:var(--accent);
  background:var(--accent);
  color:#09090B;
}
.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__text{
  color:var(--accent);
  font-weight:700;
}

/* ---- アイテムラベル ---- */
.smf-item__label__text,
.smf-form .smf-item__label,
.smf-form .smf-item__label label{
  display:block;
  font-family:var(--font-heading) !important;
  font-size:.75rem !important;
  font-weight:600 !important;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--text-tertiary) !important;
  margin-bottom:.4rem;
}
/* 必須マーク: data-validations="required" を持つコントロールの親ラベルに * を追加 */
.smf-form .smf-item:has([data-validations*="required"]) .smf-item__label__text::after{
  content:' *';
  color:var(--accent);
  font-weight:700;
}
/* プラグイン既定の必須バッジがあれば合わせる */
.smf-item__label__required,
.smf-item__label .smf-item__label__required{
  font-size:.65rem;
  color:var(--accent) !important;
  margin-left:.25rem;
}

/* ---- 説明文（個人情報など） ---- */
.smf-item__description{
  font-size:.8rem !important;
  color:var(--text-tertiary) !important;
  margin-top:.4rem;
  line-height:1.6;
}
.smf-item__description a{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* ---- テキスト入力 ---- */
.smf-form .smf-text-control__control{
  background-color:var(--bg-elevated) !important;
  color:var(--text-primary) !important;
  border:1px solid var(--border) !important;
  border-radius:10px !important;
  padding:.75rem 1rem !important;
  font-family:var(--font-body) !important;
  font-size:.9rem !important;
  box-shadow:none !important;
  outline:none !important;
  width:100% !important;
  transition:border-color .3s !important;
  -webkit-appearance:none;
}
.smf-form .smf-text-control__control:focus{
  border-color:var(--accent) !important;
}
.smf-form .smf-text-control__control::placeholder{
  color:var(--text-tertiary) !important;
}

/* ---- テキストエリア ---- */
.smf-form .smf-textarea-control__control{
  background-color:var(--bg-elevated) !important;
  color:var(--text-primary) !important;
  border:1px solid var(--border) !important;
  border-radius:10px !important;
  padding:.75rem 1rem !important;
  font-family:var(--font-body) !important;
  font-size:.9rem !important;
  box-shadow:none !important;
  outline:none !important;
  width:100% !important;
  min-height:160px !important;
  resize:vertical;
  transition:border-color .3s !important;
}
.smf-form .smf-textarea-control__control:focus{
  border-color:var(--accent) !important;
}
.smf-form .smf-textarea-control__control::placeholder{
  color:var(--text-tertiary) !important;
}

/* ---- セレクト ---- */
.smf-form .smf-select-control{
  display:block;
  width:100%;
  position:relative;
}
.smf-form .smf-select-control__control{
  background-color:var(--bg-elevated) !important;
  color:var(--text-primary) !important;
  border:1px solid var(--border) !important;
  border-radius:10px !important;
  padding:.75rem 2.5rem .75rem 1rem !important;
  font-family:var(--font-body) !important;
  font-size:.9rem !important;
  width:100% !important;
  cursor:pointer;
  outline:none !important;
  -webkit-appearance:none;
  transition:border-color .3s !important;
}
.smf-form .smf-select-control__control:focus{
  border-color:var(--accent) !important;
}
/* プラグインのトグル（白い矢印ボックス）を完全非表示 */
.smf-form .smf-select-control__toggle{
  display:none !important;
  visibility:hidden !important;
}
/* カスタム矢印をCSSで追加 */
.smf-form .smf-select-control::after{
  content:'';
  position:absolute;
  right:1rem;
  top:50%;
  transform:translateY(-50%);
  width:0;height:0;
  border-left:5px solid transparent;
  border-right:5px solid transparent;
  border-top:6px solid var(--text-tertiary);
  pointer-events:none;
}
.smf-form .smf-select-control__control option{
  background:var(--bg-card);
  color:var(--text-primary);
}

/* ---- チェックボックス（個人情報同意など） ---- */
.smf-checkboxes-control__control,
.smf-form .smf-checkboxes-control{
  display:flex;
  flex-direction:column;
  gap:.5rem;
}
.smf-form .smf-label{
  display:flex;
  align-items:flex-start;
  gap:.6rem;
  cursor:pointer;
}
.smf-form .smf-label label{
  display:flex;
  align-items:flex-start;
  gap:.6rem;
  cursor:pointer;
  font-size:.85rem !important;
  color:var(--text-secondary) !important;
  text-transform:none !important;
  letter-spacing:0 !important;
  font-weight:400 !important;
}
.smf-form .smf-checkbox-control{
  display:flex;
  align-items:flex-start;
  gap:.6rem;
}
.smf-form .smf-checkbox-control__control{
  -webkit-appearance:none;
  appearance:none;
  width:18px;height:18px;
  min-width:18px;
  border:2px solid var(--border);
  border-radius:4px;
  background:var(--bg-elevated);
  cursor:pointer;
  transition:all .2s;
  margin-top:1px;
  position:relative;
}
.smf-form .smf-checkbox-control__control:checked{
  background:var(--accent) !important;
  border-color:var(--accent) !important;
}
.smf-form .smf-checkbox-control__control:checked::after{
  content:'';
  position:absolute;
  left:4px;top:1px;
  width:6px;height:10px;
  border:2px solid #09090B;
  border-top:none;
  border-left:none;
  transform:rotate(45deg);
}
.smf-form .smf-checkbox-control__control:focus{
  border-color:var(--accent) !important;
  outline:none;
}
.smf-form .smf-checkbox-control__label{
  font-size:.85rem;
  color:var(--text-secondary);
  line-height:1.5;
}

/* ---- フォームアイテム間隔 ---- */
.smf-form .smf-item,
.smf-form .wp-block-snow-monkey-forms-item{
  margin-bottom:1.5rem !important;
}
.smf-form .smf-item{
  display:block !important;
}
.smf-form .smf-item__col--label{
  margin-bottom:.4rem;
}

/* ---- アクションエリア（送信・訂正ボタン） ---- */
.smf-action{
  margin-top:2rem;
  display:flex !important;
  flex-direction:column !important;
  gap:.75rem !important;
  align-items:stretch !important;
}
/* 送信ボタン・確認するボタン（主要アクション） */
.smf-form .smf-button-control__control,
.snow-monkey-form .smf-action button:not([data-action]),
.snow-monkey-form .smf-action button[type="submit"],
.snow-monkey-form .smf-action input[type="submit"]{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:14px 40px !important;
  border-radius:100px !important;
  border:none !important;
  background:var(--accent) !important;
  color:#09090B !important;
  font-family:var(--font-heading) !important;
  font-size:.9rem !important;
  font-weight:700 !important;
  cursor:pointer !important;
  transition:all .4s var(--ease-out-expo) !important;
  width:100% !important;
  box-shadow:none !important;
  text-align:center !important;
}
/* 訂正するボタン（戻るボタン） */
.snow-monkey-form .smf-action button[data-action="back"],
.snow-monkey-form .smf-action input[data-action="back"],
.snow-monkey-form .smf-action .smf-form__back{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:12px 40px !important;
  border-radius:100px !important;
  background:transparent !important;
  color:var(--text-secondary) !important;
  border:1px solid var(--border) !important;
  font-family:var(--font-heading) !important;
  font-size:.85rem !important;
  font-weight:500 !important;
  cursor:pointer !important;
  width:100% !important;
  transition:all .3s !important;
}

/* ---- 確認画面 ---- */
.smf-form--confirm{
  background:var(--bg-elevated) !important;
  border-radius:12px;
  padding:1.5rem;
}
.smf-form--confirm .smf-item__label__text{
  color:var(--text-tertiary) !important;
  text-transform:uppercase;
}
.smf-form--confirm .smf-item__controls{
  color:var(--text-primary);
  font-size:.9rem;
  padding:.5rem 0;
  border-bottom:1px solid var(--border);
}
.smf-form--confirm .smf-item:last-child .smf-item__controls{
  border-bottom:none;
}
.smf-action .smf-button-control+.smf-button-control{
  margin-left: 0;
}

/* ---- 完了画面 ---- */
.snow-monkey-form[data-screen="complete"] .smf-form{
  text-align:center;
  padding:2rem 0;
  color:var(--text-secondary);
}
.smf-complete-content p{
    font-size: 0.9rem;
    text-align: left;
}

/* ---- エラーメッセージ ---- */
.smf-error-message,
.smf-item__error-message,
.smf-form .smf-item__error{
  color:#F87171 !important;
  font-size:.75rem;
  margin-top:.3rem;
  font-family:var(--font-heading);
}
/* バリデーションエラー時の枠線 */
.smf-form .smf-text-control__control[aria-invalid="true"],
.smf-form .smf-textarea-control__control[aria-invalid="true"]{
  border-color:#F87171 !important;
}

/* ===== PRIVACY POLICY PAGE ===== */
.pp-page{flex:1}
.pp-inner{
  max-width:760px;
  margin:0 auto;
  padding:2rem clamp(1.5rem,5vw,4rem) 6rem;
}
.pp-header{margin-bottom:3rem}
.pp-title{
  font-family:var(--font-heading);
  font-size:2rem;font-weight:800;
  letter-spacing:-.04em;
  margin-bottom:.5rem;
}
.pp-subtitle{
  font-size:.85rem;
  color:var(--text-tertiary);
}
.pp-updated{
  font-family:var(--font-mono);
  font-size:.7rem;
  color:var(--text-tertiary);
  margin-top:.75rem;
}
.pp-toc{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:1.5rem 2rem;
  margin-bottom:3rem;
}
.pp-toc-title{
  font-family:var(--font-heading);
  font-size:.7rem;font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--accent);
  margin-bottom:.75rem;
}
.pp-toc-list{
  list-style:none;
  padding:0;
  display:flex;flex-direction:column;gap:.4rem;
}
.pp-toc-list a{
  font-size:.8rem;
  color:var(--text-secondary);
  text-decoration:none;
  transition:color .3s;
  display:flex;align-items:center;gap:.5rem;
}
.pp-toc-list a::before{
  content:'';
  width:4px;height:4px;
  border-radius:50%;
  background:var(--text-tertiary);
  flex-shrink:0;
  transition:background .3s;
}
.pp-section{margin-bottom:2.5rem}
.pp-section-title{
  font-family:var(--font-heading);
  font-size:1rem;font-weight:700;
  letter-spacing:-.02em;
  margin-bottom:1rem;
  padding-bottom:.75rem;
  border-bottom:1px solid var(--border);
  display:flex;align-items:center;gap:.6rem;
}
.pp-section-title::before{
  content:'';
  width:3px;height:1em;
  border-radius:2px;
  background:var(--accent);
  flex-shrink:0;
}
.pp-body{
  font-size:.88rem;
  color:var(--text-secondary);
  line-height:1.9;
}
.pp-body p{margin-bottom:1rem}
.pp-body p:last-child{margin-bottom:0}
.pp-body a{
  color:var(--accent);
  text-decoration:none;
  border-bottom:1px solid var(--accent-soft);
  transition:border-color .3s;
}
.pp-cta{
  text-align:center;
  margin-top:3rem;
  padding-top:2rem;
  border-top:1px solid var(--border);
}
.pp-cta-btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:12px 32px;
  border-radius:100px;
  border:1px solid var(--border);
  color:var(--text-secondary);
  font-family:var(--font-heading);
  font-size:.85rem;font-weight:600;
  text-decoration:none;
  transition:all .4s var(--ease-out-expo);
}

/* ===== VIEW TRANSITIONS ===== */
@media(prefers-reduced-motion: no-preference){
  @view-transition{
    navigation:auto;
  }
  ::view-transition-old(root),
  ::view-transition-new(root){
    animation-duration:.25s;
    animation-timing-function:ease;
  }
  ::view-transition-old(root){
    animation-name:vt-fade-out;
  }
  ::view-transition-new(root){
    animation-name:vt-fade-in;
  }
  @keyframes vt-fade-out{
    from{opacity:1}
    to{opacity:0}
  }
  @keyframes vt-fade-in{
    from{opacity:0}
    to{opacity:1}
  }
  /* サムネイルモーフィング: デフォルトのクロスフェードを継承 */
  ::view-transition-old(image),
  ::view-transition-new(image){
    animation-duration:.25s;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner{
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:500;
  background:var(--bg-card);
  border-top:1px solid var(--border);
  padding:.875rem clamp(1.5rem,5vw,4rem);
  opacity:1;
  transform:translateY(0);
  transition:opacity .5s var(--ease-out-expo), transform .5s var(--ease-out-expo);
}
.cookie-banner[hidden]{display:none}
.cookie-banner--hide{
  opacity:0;
  transform:translateY(8px);
}
.cookie-banner__inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
}
.cookie-banner__text{
  font-family:var(--font-heading);
  font-size:.8rem;
  color:var(--text-secondary);
}
.cookie-banner__text a{
  color:var(--accent);
  text-decoration:none;
  border-bottom:1px solid var(--accent-soft);
  transition:border-color .3s;
}
.cookie-banner__btn{
  flex-shrink:0;
  padding:8px 28px;
  border-radius:100px;
  border:none;
  background:var(--accent);
  color:#09090B;
  font-family:var(--font-heading);
  font-size:.8rem;
  font-weight:700;
  cursor:pointer;
  transition:all .3s var(--ease-out-expo);
}
@media(max-width:600px){
  .cookie-banner__inner{flex-direction:column;gap:.75rem;text-align:center}
  .cookie-banner__btn{width:100%}
}

/* ===== HOVER ===== */
@media(hover:hover){
  .logo:hover{opacity:.7}
  .nav a:hover{color:var(--text-primary)}
  .nav a:hover::after{width:100%}
  .breadcrumb a:hover{color:var(--accent)}
  .tag--accent:hover{background:var(--accent-medium)}
  .tag--muted:hover{background:var(--border-hover)}
  .btn:hover{
    border-color:var(--accent);
    color:#09090B;
  }
  .btn:hover::before{
    transform:scaleX(1);
  }
  .btn-link:hover{opacity:.7}
  .article__bookmark:hover,
  .article__thumb .bookmark-btn:hover{background:var(--accent);border-color:var(--accent);color:#09090B}
  .article__ttl a:hover{color:var(--accent)}
  .article__tags li a:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-soft)}
  .nav-item--dropdown:hover > a::after{
    margin-left: 0;
    transform:rotate(-180deg);
    opacity:1;
  }
  .nav-item--dropdown:hover .nav-dropdown{
    opacity:1;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
  }
  .nav-dropdown a:hover{
    background:var(--bg-elevated);
    color:var(--text-primary);
  }
  .search-toggle:hover{
    border-color:var(--border-hover);
    color:var(--text-primary);
    background:var(--bg-elevated);
  }
  .search-overlay__submit:hover{color:var(--accent);background:var(--accent-soft)}
  .search-overlay__close:hover{border-color:var(--border-hover);color:var(--text-primary)}
  .tag-cloud__item:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-soft)}
  .menu-toggle:hover{border-color:var(--border-hover)}
  .mobile-menu__link:hover{color:var(--accent)}
  .mobile-menu__cats a:hover{border-color:var(--accent);color:var(--accent)}
  .footer-links-nav a:hover{color:var(--accent)}
  .skill-card:hover{
    border-color:var(--border-hover);
    transform:translateY(-2px);
  }
  .profile-cta-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 30px rgba(245,158,11,0.3);
  }
  .smf-item__description a:hover{
    opacity:.8;
  }
  .smf-form .smf-button-control__control:hover,
  .snow-monkey-form .smf-action button[type="submit"]:hover{
    transform:translateY(-2px) !important;
    box-shadow:0 8px 30px rgba(245,158,11,0.3) !important;
  }
  .snow-monkey-form .smf-action button[data-action="back"]:hover{
    border-color:var(--border-hover) !important;
    color:var(--text-primary) !important;
    transform:none !important;
    box-shadow:none !important;
  }
  .pp-toc-list a:hover{color:var(--accent)}
  .pp-toc-list a:hover::before{background:var(--accent)}
  .pp-body a:hover{border-color:var(--accent)}
  .pp-cta-btn:hover{
    border-color:var(--accent);
    color:var(--accent);
    background:var(--accent-soft);
  }
  .cookie-banner__text a:hover{border-color:var(--accent)}
  .cookie-banner__btn:hover{
    transform:translateY(-1px);
    box-shadow:0 4px 20px rgba(245,158,11,0.35);
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:767px){
  .nav a{display:none}
  .nav-item--dropdown{display:none}
  .nav{gap:.75rem}
  .menu-toggle{display:flex}
  .search-overlay{padding:1rem 1.25rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .footer-brand{grid-column:1/-1}
  .footer-bottom{flex-direction:column;gap:.5rem;text-align:center}
  .logo{gap:8px}
  .logo-mark{width:32px;height:32px;border-radius:8px}
  .logo-mark-inner{font-size:11px}
  .logo-text{font-size:.95rem}
  .skill-grid{grid-template-columns:1fr}
  .blog-stats{grid-template-columns:repeat(2,1fr)}
  .profile-name{font-size:1.5rem}
  .pp-title{font-size:1.5rem}
  .pp-toc{padding:1.25rem 1.5rem}
  .contact-title{font-size:1.5rem}
  .contact-form-card{padding:1.5rem}
  .career-item{flex-direction:column;gap:.5rem}
  .career-period{min-width:auto}
}



/* お問い合わせページ以外でreCAPTCHAバッジを非表示 */
body:not(.page-id-1995) .grecaptcha-badge {
    display: none !important;
}