/* =========================================================
   minamo design — prototype stylesheet
   Brand: 水面（波紋）モチーフ / ネイビー×ブルー
   ========================================================= */

:root {
  /* brand palette */
  --navy-900: #14303f;
  --navy-800: #1e4256;
  --navy-700: #2f5f78;
  --blue-500: #5b8ca8;
  --blue-300: #a9cad8;
  --blue-100: #cfe2ea;
  --ink: #1a3140;
  --ink-soft: #5a7686;
  --bg: #ffffff;
  --bg-soft: #f4f8fa;
  --bg-mist: #eef4f7;
  --line: #dce9ee;
  --white: #ffffff;

  --grad-water: linear-gradient(135deg, #5b8ca8 0%, #1e4256 100%);
  --grad-deep: linear-gradient(135deg, #2f5f78 0%, #14303f 100%);

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(30, 66, 86, 0.08);
  --shadow-md: 0 12px 40px rgba(30, 66, 86, 0.12);
  --shadow-lg: 0 24px 60px rgba(20, 48, 63, 0.18);
  --max: 1120px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans",
    "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { width: min(92%, var(--max)); margin-inline: auto; }

/* ---------- shared section title ---------- */
.eyebrow {
  font-family: "Quicksand", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-500);
  font-weight: 600;
}
.section-title {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.4;
  margin-top: 0.6rem;
}
.section-lead {
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 42em;
}
.section-head { text-align: center; margin-inline: auto; margin-bottom: 3.2rem; }
.section-head .section-lead { margin-inline: auto; }

section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.95em 1.8em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--grad-deep);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(30, 66, 86, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(30, 66, 86, 0.36); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border: 1.5px solid var(--blue-300);
}
.btn-outline:hover { background: var(--bg-mist); transform: translateY(-3px); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    padding 0.3s var(--ease);
  padding: 1.1rem 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(30, 66, 86, 0.08);
  padding: 0.65rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 40px; height: 40px; flex: none; transition: filter 0.3s var(--ease); }
/* white mark on dark backgrounds (transparent header over hero, footer) */
.site-header:not(.scrolled) .brand__mark,
.footer-brand .brand__mark { filter: brightness(0) invert(1); }
.brand__text { line-height: 1; }
.brand__name {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy-900);
  letter-spacing: 0.01em;
}
.brand__sub {
  font-family: "Quicksand", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--blue-500);
  text-transform: uppercase;
  padding-left: 0.1em;
}
/* header on transparent (top) state — light text */
.site-header:not(.scrolled) .brand__name { color: var(--white); }
.site-header:not(.scrolled) .nav a { color: rgba(255, 255, 255, 0.9); }
.site-header:not(.scrolled) .nav a:hover { color: var(--white); }

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
  position: relative;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue-500);
  transition: width 0.25s var(--ease);
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--grad-deep);
  color: var(--white) !important;
  padding: 0.6em 1.4em;
  border-radius: 999px;
  font-weight: 700;
}
.nav-cta::after { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-deep);
  color: var(--white);
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero__ripples {
  position: absolute;
  top: 50%; right: -8%;
  transform: translateY(-50%);
  width: min(70vw, 780px);
  aspect-ratio: 1;
  pointer-events: none;
}
.hero__ripples span {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  animation: ripple 6s ease-out infinite;
  opacity: 0;
}
.hero__ripples span:nth-child(2) { animation-delay: 1.5s; }
.hero__ripples span:nth-child(3) { animation-delay: 3s; }
.hero__ripples span:nth-child(4) { animation-delay: 4.5s; }
.hero__core {
  position: absolute;
  inset: 0; margin: auto;
  width: 22%; aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 60px rgba(169, 202, 216, 0.35);
}
@keyframes ripple {
  0%   { transform: scale(0.18); opacity: 0; }
  15%  { opacity: 0.9; }
  100% { transform: scale(1); opacity: 0; }
}

.hero__inner { position: relative; z-index: 2; max-width: 640px; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  padding: 0.5em 1.1em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--blue-100);
  margin-bottom: 1.8rem;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(1.75rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.hero h1 .accent {
  display: inline-block; /* 句の途中で改行させない */
  background: linear-gradient(120deg, #cfe2ea, #a9cad8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin-top: 1.6rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34em;
}
.hero__cta { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  writing-mode: vertical-rl;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* =========================================================
   Services
   ========================================================= */
.services { background: var(--bg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-water);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--bg-mist);
  display: grid; place-items: center;
  margin-bottom: 1.4rem;
}
.service-card__num {
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--blue-300);
}
.service-card h3 { font-size: 1.3rem; color: var(--navy-900); margin: 0.4rem 0 0.9rem; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }
.service-card ul { list-style: none; margin-top: 1.2rem; display: grid; gap: 0.5rem; }
.service-card li {
  font-size: 0.9rem;
  color: var(--navy-700);
  padding-left: 1.4em;
  position: relative;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--blue-500);
}

/* =========================================================
   Why / strengths
   ========================================================= */
.why { background: var(--bg-soft); position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.why-card__no {
  font-family: "Quicksand", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  background: var(--grad-water);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex: none;
}
.why-card h3 { font-size: 1.15rem; color: var(--navy-900); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* =========================================================
   Process
   ========================================================= */
.process { background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.4rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--blue-100);
  position: absolute;
  top: -0.4rem; left: 0;
}
.step h3 { font-size: 1.05rem; color: var(--navy-900); margin-bottom: 0.5rem; position: relative; }
.step p { font-size: 0.88rem; color: var(--ink-soft); }
.step:not(:last-child) h3::after {
  content: "";
  position: absolute;
  right: -0.9rem; top: 0.6em;
  width: 0.6rem; height: 2px;
  background: var(--blue-300);
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing { background: var(--bg-soft); }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.featured {
  background: var(--grad-deep);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.plan__badge {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  background: var(--blue-100);
  color: var(--navy-800);
  padding: 0.3em 0.9em;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 700;
}
.plan.featured .plan__badge { background: rgba(255, 255, 255, 0.18); color: var(--white); }
.plan h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.plan .plan__desc { font-size: 0.9rem; color: var(--ink-soft); min-height: 3em; }
.plan.featured .plan__desc { color: rgba(255, 255, 255, 0.8); }
.plan__price {
  font-family: "Quicksand", sans-serif;
  margin: 1.4rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.3em;
}
.plan__price .yen { font-size: 1rem; }
.plan__price .num { font-size: 2.4rem; font-weight: 600; line-height: 1; }
.plan__price .unit { font-size: 0.85rem; color: var(--ink-soft); }
.plan.featured .plan__price .unit { color: rgba(255, 255, 255, 0.7); }
.plan ul { list-style: none; display: grid; gap: 0.7rem; margin: 0.5rem 0 1.8rem; }
.plan li { font-size: 0.9rem; padding-left: 1.6em; position: relative; }
.plan li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 0.7em; height: 0.4em;
  border-left: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: rotate(-45deg);
}
.plan.featured li::before { border-color: var(--blue-100); }
.plan .btn { margin-top: auto; justify-content: center; }
.plan.featured .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.plan.featured .btn-outline:hover { background: rgba(255,255,255,0.12); }
.pricing__note { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 2rem; }

/* =========================================================
   Works / portfolio
   ========================================================= */
.works { background: var(--bg); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.work {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--grad-water);
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.work__ph {
  text-align: center;
  opacity: 0.9;
}
.work__ph .tag { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-100); }
.work__ph .title { font-size: 1.05rem; font-weight: 700; margin-top: 0.3rem; }
.work:nth-child(2) { background: var(--grad-deep); }
.work:nth-child(3) { background: linear-gradient(135deg,#3f7291,#14303f); }
.works__note { text-align: center; margin-top: 2.4rem; color: var(--ink-soft); font-size: 0.9rem; }

/* =========================================================
   Profile
   ========================================================= */
.profile { background: var(--bg-soft); }
.profile-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.profile__photo {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--grad-water);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.profile__photo svg { width: 55%; opacity: 0.9; }
.profile__body h2 { font-size: clamp(1.5rem,3vw,2rem); color: var(--navy-900); margin: 0.5rem 0 1.2rem; }
.profile__body p { color: var(--ink-soft); margin-bottom: 1rem; }
.profile__sign {
  font-family: "Quicksand", sans-serif;
  color: var(--navy-700);
  font-weight: 500;
  margin-top: 1.5rem;
}

/* =========================================================
   CTA / contact
   ========================================================= */
.cta {
  background: var(--grad-deep);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  bottom: -250px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 60px rgba(255,255,255,0.05), 0 0 0 140px rgba(255,255,255,0.03);
}
.cta h2 { font-size: clamp(1.7rem,4vw,2.6rem); position: relative; z-index: 2; }
.cta p { color: rgba(255,255,255,0.82); margin: 1.2rem auto 2.4rem; max-width: 34em; position: relative; z-index: 2; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- contact form ---------- */
.contact-form {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--navy-900); }
.field .req {
  font-size: 0.66rem; font-weight: 700; color: var(--white);
  background: var(--blue-500); padding: 0.1em 0.6em; border-radius: 999px;
  margin-left: 0.4em; vertical-align: middle;
}
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
  padding: 0.8em 1em;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(91, 140, 168, 0.15);
}
.field input::placeholder, .field textarea::placeholder { color: #9db4c0; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin: 0; }
.cta .form-note { color: var(--ink-soft); margin: 0; max-width: none; }
.form-actions .btn { justify-content: center; }
.contact-form.sent { display: block; text-align: center; padding: clamp(2.4rem,6vw,3.6rem); }
.form-thanks h3 { color: var(--navy-900); font-size: 1.4rem; margin-bottom: 0.7rem; }
.form-thanks p { color: var(--ink-soft); font-size: 0.95rem; }
.form-thanks .mark { width: 64px; margin: 0 auto 1.2rem; }
@media (max-width: 620px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}
.footer-top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { margin-top: 1rem; max-width: 24em; color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.footer-nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-nav h4 { color: var(--blue-100); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.footer-nav ul { list-style: none; display: grid; gap: 0.5rem; }
.footer-nav a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.footer-bottom .brand__name { font-family:"Quicksand",sans-serif; font-size: inherit; color: inherit; }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 940px) {
  .service-grid, .plan-grid, .work-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 2.4rem; }
  .step:not(:last-child) h3::after { display: none; }
  .profile-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 0.5rem 6%;
    box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); color: var(--ink) !important; }
  .nav.open .nav-cta { text-align: center; margin: 0.8rem 0; border-bottom: none; color: var(--white) !important; padding: 0.9em 1.4em; }
  .nav-toggle { display: grid; gap: 5px; }
  .nav-toggle span { width: 26px; height: 2px; background: var(--navy-900); transition: 0.3s; }
  .site-header:not(.scrolled) .nav-toggle span { background: var(--white); }
  .service-grid, .plan-grid, .work-grid, .why-grid { grid-template-columns: 1fr; }
  .hero__ripples { right: -30%; opacity: 0.5; }
  .footer-top { flex-direction: column; }
}

/* =========================================================
   Blog (WordPress) minimal styles
   ========================================================= */
.blog-wrap { background: var(--bg-soft); min-height: 60vh; padding-bottom: 5rem; }
.post-list { display: grid; gap: 1rem; margin-top: 2.5rem; }
.post-item a {
  display: block; background: var(--white); border-radius: var(--radius);
  padding: 1.6rem 2rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.post-item a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-item time { font-size: .8rem; color: var(--blue-500); font-family: "Quicksand", sans-serif; }
.post-item h2 { font-size: 1.15rem; color: var(--navy-900); margin: .3rem 0 .5rem; }
.post-item p { font-size: .9rem; color: var(--ink-soft); }
.entry-content { line-height: 2; color: var(--ink); }
.entry-content h2 { color: var(--navy-900); margin: 2.2em 0 .8em; border-left: 4px solid var(--blue-500); padding-left: .6em; }
.entry-content h3 { color: var(--navy-800); margin: 1.8em 0 .6em; }
.entry-content p { margin-bottom: 1.2em; }
.entry-content img { border-radius: var(--radius); }
.pagination { text-align: center; margin-top: 2.5rem; }
/* CF7 フォームをテーマデザインに馴染ませる */
.contact-form--cf7 { display: block; text-align: left; }
.contact-form--cf7 .wpcf7-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-form--cf7 .wpcf7-form p { display: contents; }
.contact-form--cf7 label { font-size: .85rem; font-weight: 700; color: var(--navy-900); display: flex; flex-direction: column; gap: .5rem; }
.contact-form--cf7 input, .contact-form--cf7 select, .contact-form--cf7 textarea {
  font-family: inherit; font-size: .95rem; color: var(--ink);
  padding: .8em 1em; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--bg-soft); width: 100%;
}
.contact-form--cf7 textarea { min-height: 130px; grid-column: 1 / -1; }
.contact-form--cf7 .wpcf7-submit {
  grid-column: 1 / -1; justify-self: center; cursor: pointer;
  background: var(--grad-deep); color: var(--white); border: none;
  padding: .95em 1.8em; border-radius: 999px; font-weight: 700;
}
@media (max-width: 620px) { .contact-form--cf7 .wpcf7-form { grid-template-columns: 1fr; } }
