/* =========================================================
   ホームページのリフォーム屋さん - Notion-flavored Design
   Typography-first / Generous whitespace / Hairline borders
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Base */
  --bg:           #ffffff;
  --bg-warm:      #fbfaf7;
  --bg-cream:     #faf3e3;
  --bg-cream-2:   #f6efde;
  --bg-peach:     #fbeee5;
  --bg-sage:      #ecf0e6;
  --bg-sky:       #e8f0f4;

  /* Text */
  --text:         #1f2f47;
  --text-deep:    #14243a;
  --text-2:       #4a5d7a;
  --text-3:       #8d8880;
  --text-4:       #b5afa5;
  --border:       #e6dfcd;
  --border-2:     #d2c7a8;
  --hover-bg:     rgba(31, 47, 71, 0.04);
  --selected-bg:  rgba(31, 47, 71, 0.08);

  /* Brand accents */
  --navy:         #1f2f47;
  --navy-soft:    #324663;
  --beige:        #b8a283;
  --beige-soft:   #d6c5a8;
  --beige-deep:   #8a7558;
  --peach:        #c97b5e;
  --sage:         #7b8a6f;
  --sky:          #6a8aa3;

  /* Layout */
  --max-w:        780px;
  --max-w-wide:   920px;
  --max-w-narrow: 680px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;

  /* Type scale (コントラスト強化版) */
  --fs-xs:   12px;
  --fs-sm:   13px;
  --fs-base: 16px;
  --fs-md:   18px;
  --fs-lg:   22px;
  --fs-xl:   28px;
  --fs-2xl:  34px;
  --fs-3xl:  44px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

.serif {
  font-family: "Noto Serif JP", "Inter", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; transition: background 0.15s, color 0.15s; }
a:hover { color: var(--navy); }

::selection { background: rgba(184, 162, 131, 0.3); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.container--wide   { max-width: var(--max-w-wide); }
.container--narrow { max-width: var(--max-w-narrow); }

/* ---------- Header ---------- */
.site-header {
  padding: 14px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
}
.site-logo img {
  height: 64px;
  width: auto;
  display: block;
}
.site-header__cta {
  font-size: var(--fs-sm);
  color: var(--text);
  padding: 10px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--text);
  background: var(--text);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.site-header__cta:hover {
  background: var(--navy-soft);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Section base ---------- */
.section {
  padding: 88px 0;
  position: relative;
}
.section--cream {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream-2) 100%);
}
.section--cream + .section--cream { border-top: 0; }
.section + .section:not(.section--cream) {
  border-top: 1px solid var(--border);
}

.section-label {
  /* 中間版：白×ピーチのピル型バッジ */
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding: 6px 14px;
  background: var(--peach);
  border-radius: 999px;
}
.section-label::before { content: none; }

.block-title {
  /* 中間版：ゴシック / 元(28) と派手(44) の中間 (36) / ピーチ + グラデ下線 */
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--peach);
  margin: 0 0 36px;
  letter-spacing: 0.02em;
  line-height: 1.45;
  padding-bottom: 16px;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, var(--peach) 0%, var(--beige) 60%, transparent 100%) 1;
  display: inline-block;
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0;
  position: relative;
  background:
    radial-gradient(ellipse 700px 500px at 90% 10%, rgba(201, 123, 94, 0.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 90%, rgba(184, 162, 131, 0.18), transparent 65%),
    linear-gradient(180deg, #fbf6e8 0%, #fdfaf2 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31, 47, 71, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero .container { max-width: 860px; }  /* タイトル40pxでも折り返さない幅 */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  letter-spacing: 0.24em;
  color: var(--beige-deep);
  font-weight: 600;
  margin: 0 0 24px;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--peach);
  border-radius: 50%;
}
.hero__title {
  /* 中間版：ゴシック / 元(26-36) と派手(30-44) の中間 (28-40) / ピーチ */
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--peach);
  line-height: 1.55;
  margin: 0 0 36px;
  letter-spacing: 0.01em;
  word-break: auto-phrase;
}
.hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;  /* ハイライト位置を安定させる */
  white-space: nowrap;
  color: var(--text-deep);
  z-index: 0;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 0.1em;
  width: calc(100% + 4px);
  height: 0.22em;
  background: rgba(201, 123, 94, 0.32);
  z-index: -1;
  border-radius: 3px;
}
.hero__lead {
  font-size: var(--fs-md);
  color: var(--text-2);
  margin: 0 0 48px;
  line-height: 1.95;
  max-width: 720px;
  word-break: auto-phrase;
}
.hero__lead strong {
  font-weight: 700;
  color: var(--text);
  /* B2B企業の…という重要フレーズを途中で改行させない */
  display: inline-block;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__cta .cta-note {
  font-size: var(--fs-sm);
  color: var(--text-3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--r-md);
  border: 1px solid var(--text-deep);
  background: linear-gradient(135deg, var(--text-deep) 0%, var(--navy-soft) 100%);
  color: #fff;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  letter-spacing: 0.06em;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(31, 47, 71, 0.18);
}
.btn::after {
  content: "→";
  font-size: 15px;
  transition: transform 0.18s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 47, 71, 0.28);
  color: #fff;
}
.btn:hover::after { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--text-deep);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--hover-bg); color: var(--text-deep); }

.btn--lg {
  padding: 16px 32px;
  font-size: var(--fs-base);
}

/* ---------- Notion-style list (bullet) ---------- */
.n-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.n-list li {
  padding: 14px 12px 14px 36px;
  position: relative;
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.8;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.n-list li:last-child { border-bottom: 0; }
.n-list li:hover { background: var(--hover-bg); }
.n-list li::before {
  content: "•";
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--beige);
  font-weight: 700;
  font-size: 18px;
}

/* "Check" variant (still subtle) */
.n-list--check li::before {
  content: "✓";
  color: var(--beige);
  font-weight: 600;
  font-size: 14px;
  top: 7px;
}

/* ---------- Callout (Notion's signature element) ---------- */
.callout {
  display: flex;
  gap: 16px;
  padding: 22px 26px;
  background: var(--bg-cream);
  border: 1px solid var(--border-2);
  border-left: 4px solid var(--peach);
  border-radius: var(--r-lg);
  margin: 0;
}
.callout__icon {
  font-size: 22px;
  line-height: 1.4;
  flex-shrink: 0;
}
.callout__body { flex: 1; }
.callout__body p { margin: 0; line-height: 1.8; color: var(--text-deep); }
.callout__body p + p { margin-top: 12px; }
.callout__body strong { font-weight: 700; color: var(--text-deep); }

.callout--sage  { background: var(--bg-sage); border-left-color: var(--sage); }
.callout--sky   { background: var(--bg-sky);  border-left-color: var(--sky); }
.callout--peach { background: var(--bg-peach); border-left-color: var(--peach); }

/* ---------- Statement (quote-like) ---------- */
.statement {
  padding: 28px 32px;
  background: var(--bg-peach);
  border: 1px solid #f0d9c9;
  border-left: 4px solid var(--peach);
  border-radius: var(--r-lg);
}
.statement-quote {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-deep);
  margin: 0 0 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.statement-text {
  font-size: var(--fs-base);
  color: var(--text-2);
  margin: 0;
  line-height: 1.95;
}
.statement-text strong { font-weight: 700; color: var(--text-deep); }

/* ---------- Service block ---------- */
.service-block {
  margin-bottom: 4px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--beige);
  border-radius: var(--r-lg);
  transition: background 0.15s, transform 0.15s;
}
.service-block:nth-child(2) { border-top-color: var(--peach); }
.service-block:nth-child(3) { border-top-color: var(--sage); }
.service-block:nth-child(4) { border-top-color: var(--sky); }
.service-block:hover { background: var(--bg-warm); transform: translateY(-2px); }
.service-block + .service-block { margin-top: 14px; }
.service-block__head {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-deep);
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: 0.02em;
}
.service-block__head .num {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--beige-deep);
  letter-spacing: 0.18em;
  margin-left: auto;
}
.service-block .n-list li { padding-left: 24px; font-size: var(--fs-base); }
.service-block .n-list li::before { left: 8px; }

/* ---------- Pricing ---------- */
.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transition: background 0.15s, border-color 0.15s;
}
.pricing-item + .pricing-item { margin-top: 12px; }
.pricing-item:hover { background: var(--bg-warm); border-color: var(--border-2); }
.pricing-item--featured {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.pricing-item--featured:hover { background: var(--navy); border-color: var(--navy); }
.pricing-item__name {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-md);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}
.pricing-item--featured .pricing-item__name { color: #fff; }
.pricing-item__price {
  font-size: var(--fs-2xl);
  font-weight: 600;
  margin: 0;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
}
.pricing-item--featured .pricing-item__price { color: var(--beige-soft); }
.pricing-item__price small {
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-left: 4px;
  color: var(--text-3);
}
.pricing-item--featured .pricing-item__price small { color: var(--beige-soft); opacity: 0.8; }
.pricing-note {
  font-size: var(--fs-sm);
  color: var(--text-3);
  margin: 20px 0 0;
  padding-left: 4px;
}

/* ---------- Category buttons (Notion card grid, color-coded) ---------- */
.cat-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
}
.cat-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text);
  font-size: var(--fs-base);
  font-weight: 500;
  min-height: 124px;
  transition: all 0.18s;
  position: relative;
  overflow: hidden;
}
.cat-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cat-tint, transparent);
  opacity: 0;
  transition: opacity 0.18s;
  z-index: 0;
}
.cat-btn > * { position: relative; z-index: 1; }
.cat-btn:hover::before { opacity: 1; }
.cat-btn:hover {
  border-color: var(--cat-border, var(--border-2));
  color: var(--text-deep);
  transform: translateY(-2px);
}
.cat-btn__sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--cat-accent, var(--text-3));
  font-weight: 600;
  text-transform: uppercase;
}
.cat-btn__sub::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--cat-accent, var(--text-3));
  border-radius: 50%;
}
.cat-btn__title {
  font-family: "Noto Serif JP", Georgia, serif;
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: 0.02em;
  color: var(--text-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cat-btn__title::after {
  content: "↗";
  color: var(--cat-accent, var(--text-3));
  font-weight: 400;
  font-size: 18px;
  transition: transform 0.18s;
}
.cat-btn:hover .cat-btn__title::after { transform: translate(3px, -3px); }

.cat-btn--primary {
  background: linear-gradient(135deg, var(--text-deep) 0%, var(--navy-soft) 100%);
  border-color: var(--text-deep);
  color: #fff;
}
.cat-btn--primary::before { display: none; }
.cat-btn--primary:hover { transform: translateY(-2px); border-color: var(--navy-soft); }
.cat-btn--primary .cat-btn__sub { color: var(--beige-soft); }
.cat-btn--primary .cat-btn__sub::before { background: var(--peach); }
.cat-btn--primary .cat-btn__title { color: #fff; }
.cat-btn--primary .cat-btn__title::after { color: var(--beige-soft); }

.cat-btn--peach { --cat-tint: var(--bg-peach); --cat-accent: var(--peach); --cat-border: #e8c4b1; }
.cat-btn--sage  { --cat-tint: var(--bg-sage);  --cat-accent: var(--sage);  --cat-border: #c5d2bd; }
.cat-btn--sky   { --cat-tint: var(--bg-sky);   --cat-accent: var(--sky);   --cat-border: #b8cad7; }

/* ---------- Divider ---------- */
.divider {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream-2) 100%);
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}
.site-footer__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer__logo img {
  height: 88px;
  width: auto;
  /* Multiply blend removes the white JPG background against the cream footer */
  mix-blend-mode: multiply;
}
.site-footer__company {
  font-size: var(--fs-sm);
  color: var(--text-2);
  letter-spacing: 0.02em;
  text-align: right;
  margin: 0;
}
.site-footer__company .label {
  display: block;
  font-size: 10px;
  color: var(--beige-deep);
  margin-bottom: 6px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.site-footer__bottom {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--text-3);
  padding: 28px 0 24px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.08em;
}

/* ---------- Contact form ---------- */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 32px 0 0;
}
.contact-form .form-row { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.contact-form .req,
.contact-form .opt {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.contact-form .req {
  background: var(--text);
  color: #fff;
}
.contact-form .opt {
  background: var(--bg-cream);
  color: var(--text-3);
  border: 1px solid var(--border);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  font-family: inherit;
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 0;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(45, 42, 38, 0.06);
}
.contact-form textarea { min-height: 140px; resize: vertical; line-height: 1.7; }
.contact-form .check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
  font-size: var(--fs-sm);
  color: var(--text-2);
  cursor: pointer;
}
.contact-form .check-row input { margin-top: 6px; }
.contact-form .submit-row { text-align: center; margin-top: 28px; }
.contact-form .submit-row .btn { min-width: 200px; }

/* ---------- Blog list ---------- */
.blog-hero {
  background: var(--bg);
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
}
.blog-hero__inner { text-align: center; }
.blog-hero h1 {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.blog-hero p { color: var(--text-3); margin: 0; font-size: var(--fs-sm); }
.blog-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 32px 0 0;
}
.blog-cat-nav a {
  font-size: var(--fs-sm);
  padding: 6px 14px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--text-2);
  letter-spacing: 0.04em;
  transition: all 0.15s;
}
.blog-cat-nav a:hover, .blog-cat-nav a.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-list li {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.post-card-link {
  display: block;
  padding: 24px 12px;
  margin: 0 -12px;
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.post-card-link:hover { background: var(--hover-bg); }
.post-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--text-3);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.post-card__cat {
  background: var(--bg-cream);
  color: var(--text-2);
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 500;
  border: 1px solid var(--border);
}
.post-card__title {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text);
  margin: 6px 0 8px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.post-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--text-2);
  margin: 0;
  line-height: 1.8;
}

/* ---------- Single post (article) ---------- */
.entry {
  background: var(--bg);
  padding: 64px 0 32px;
}
.entry-meta {
  font-size: var(--fs-xs);
  color: var(--text-3);
  margin: 0 0 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  letter-spacing: 0.04em;
}
.entry-meta .cat {
  background: var(--bg-cream);
  color: var(--text-2);
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 500;
  border: 1px solid var(--border);
}
.entry-title {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 40px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.entry-content {
  font-size: var(--fs-base);
  line-height: 1.95;
  color: var(--text);
}
.entry-content h2 {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text);
  margin: 56px 0 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.entry-content h3 {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
  letter-spacing: 0.02em;
}
.entry-content p { margin: 0 0 20px; }
.entry-content ul, .entry-content ol { margin: 0 0 24px; padding-left: 26px; }
.entry-content ul li, .entry-content ol li {
  margin-bottom: 6px;
  line-height: 1.85;
}
.entry-content ul li::marker { color: var(--text-3); }
.entry-content blockquote {
  background: var(--bg-cream);
  border-left: 3px solid var(--beige);
  padding: 18px 22px;
  margin: 28px 0;
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.85;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.entry-content blockquote p { margin: 0; }
.entry-content strong { color: var(--text); font-weight: 600; background: rgba(184, 162, 131, 0.18); padding: 1px 3px; border-radius: 2px; }
.entry-content code {
  background: var(--bg-cream);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 14px;
  color: var(--text);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  border: 1px solid var(--border);
}
.entry-cta {
  margin: 64px 0 0;
  padding: 32px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.entry-cta h3 {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.entry-cta p {
  font-size: var(--fs-sm);
  color: var(--text-2);
  margin: 0 0 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding: 56px 0; }
  .container { padding: 0 22px; }
  .hero .container { max-width: 100%; }
  .site-header { padding: 10px 0; }
  .site-header__inner { padding: 0 22px; }
  .site-logo img { height: 48px; }
  .site-header__cta { padding: 8px 14px; font-size: 12px; }
  .site-footer__logo img { height: 56px; }
  .hero { padding: 56px 0 64px; }
  .hero__title { font-size: 24px; line-height: 1.6; letter-spacing: 0.01em; }
  .hero__lead { font-size: 15px; line-height: 1.85; }
  .block-title { font-size: 24px; line-height: 1.5; padding-bottom: 12px; }
  .issue-list .title, .solution-list .title { font-size: 16px; line-height: 1.5; }
  .issue-list .desc, .solution-list .desc { font-size: 14px; }
  .issue-list .num, .solution-list .num { width: 44px; height: 44px; font-size: 18px; }
  .plan { padding: 22px 20px; }
  .plan__name { font-size: 18px; }
  .plan__price { font-size: 30px; }
  .plan__price small { font-size: 13px; }
  .plan__includes li { font-size: 14px; }
  .section-label { font-size: 11px; padding: 5px 12px; }
  .callout { padding: 18px 20px; gap: 12px; }
  .callout__body p { font-size: 15px; }
  .statement { padding: 24px; }
  .statement-quote { font-size: 18px; line-height: 1.55; }
  .statement-text { font-size: 14px; }
  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px;
  }
  .cat-buttons { grid-template-columns: 1fr; }
  .site-footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .site-footer__company { text-align: center; }
  .contact-form { padding: 22px; }
  .btn, .btn--lg { width: 100%; max-width: 360px; justify-content: center; }
  .entry-title { font-size: 24px; }
  .entry-content h2 { font-size: 19px; margin-top: 40px; }
  .entry-content h3 { font-size: 17px; }
}

/* =========================================================
   Illustrations / Icons / Decorations
   ========================================================= */

/* ---- Service icon (per service block head) ---- */
.service-block__head .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--navy);
  margin-right: 4px;
}
.service-block:nth-child(2) .service-block__head .icon { color: var(--peach); }
.service-block:nth-child(3) .service-block__head .icon { color: var(--sage); }

/* ---- Hero geometric decoration ---- */
.hero { position: relative; }
.hero__deco {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  max-width: 35vw;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) {
  .hero__deco {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 200px;
    margin: 32px auto 0;
    display: block;
  }
}

/* ---- Statement quote mark ---- */
.statement {
  position: relative;
  padding-top: 56px;
}
.statement::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 88px;
  line-height: 1;
  color: var(--peach);
  opacity: 0.4;
  font-weight: 700;
}

/* ---- Before / After comparison diagram ---- */
.compare {
  margin: 36px 0 0;
  padding: 32px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.compare__title {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  color: var(--beige-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 16px;
  text-align: center;
}
.compare svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Category icon dot ---- */
.cat-btn__icon {
  width: 28px;
  height: 28px;
  color: var(--cat-accent, var(--text-3));
  margin-bottom: -4px;
}
.cat-btn--primary .cat-btn__icon { color: var(--beige-soft); }

/* ---- Section decorative divider (stairs motif) ---- */
.deco-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 0 0 28px;
  height: 16px;
}
.deco-divider span {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid var(--beige);
  background: transparent;
}
.deco-divider span:nth-child(2) { background: var(--beige-soft); border-color: var(--beige-soft); }
.deco-divider span:nth-child(3) { transform: translateY(-4px); }

/* =========================================================
   コントラスト強化追加：番号付きカード / 課題&解決リスト / 料金詳細
   ========================================================= */

/* ---------- 番号付き課題カード ---------- */
.issue-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.issue-list li {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--peach);
  border-radius: var(--r-lg);
  transition: transform 0.18s, box-shadow 0.18s;
}
.issue-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 47, 71, 0.08);
}
.issue-list .num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--peach);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
}
.issue-list .body { flex: 1; }
.issue-list .title {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text-deep);
  margin: 4px 0 8px;
  line-height: 1.5;
}
.issue-list .desc {
  font-size: var(--fs-sm);
  color: var(--text-2);
  margin: 0;
  line-height: 1.8;
}

/* ---------- 番号付き解決リスト（左ボーダーをsage色に） ---------- */
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.solution-list li {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--sage);
  border-radius: var(--r-lg);
  transition: transform 0.18s, box-shadow 0.18s;
}
.solution-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 138, 111, 0.15);
}
.solution-list .num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--sage);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.solution-list .body { flex: 1; }
.solution-list .title {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text-deep);
  margin: 4px 0 8px;
  line-height: 1.5;
}
.solution-list .desc {
  font-size: var(--fs-sm);
  color: var(--text-2);
  margin: 0;
  line-height: 1.8;
}

/* ---------- 料金プラン詳細（表+ボックス） ---------- */
.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: transform 0.18s, border-color 0.18s;
}
.plan:hover { transform: translateY(-2px); border-color: var(--border-2); }
.plan--featured {
  background: var(--bg-cream);
  border-color: var(--beige);
  border-width: 2px;
  position: relative;
}
.plan--featured::before {
  content: "おすすめ";
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--peach);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
}
.plan__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-2);
}
.plan__name {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-deep);
  margin: 0;
  letter-spacing: 0.02em;
}
.plan__price {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--text-deep);
  margin: 0;
  letter-spacing: -0.01em;
}
.plan__price small {
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-left: 4px;
  color: var(--text-3);
}
.plan__period {
  font-size: var(--fs-xs);
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-warm);
  border-radius: 999px;
}
.plan__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.plan__includes li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.7;
}
.plan__includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--sage);
  font-weight: 700;
}
.plan__target {
  background: var(--bg-warm);
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--text-2);
  margin: 0;
  line-height: 1.7;
}
.plan__target strong { color: var(--text-deep); }

/* ---------- 会社情報（フッター内） ---------- */
.company-info {
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.8;
  margin: 0;
  text-align: right;
}
.company-info .name {
  display: block;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text-deep);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.company-info .label {
  display: block;
  font-size: 10px;
  color: var(--beige-deep);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.company-info .addr,
.company-info .tel { display: block; font-size: 13px; }
.company-info .tel { margin-top: 4px; }

/* ---------- Mobile調整（追加） ---------- */
@media (max-width: 768px) {
  .issue-list li, .solution-list li {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  .issue-list .num, .solution-list .num {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .plan { padding: 22px 20px; }
  .plan__head { flex-direction: column; gap: 6px; align-items: flex-start; }
  .company-info { text-align: center; }
}

/* =========================================================
   派手版 ヒーロー装飾SVGのアニメーション
   ========================================================= */

/* SVG全体をふわっと登場 */
.hero__deco {
  animation: heroDecoFadeIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@keyframes heroDecoFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 0.65; }
}

/* 4つの線画ブロック：上下に揺れながら濃淡 */
.hero__deco g rect {
  transform-box: fill-box;
  transform-origin: center;
}
.hero__deco g rect:nth-child(1) {
  animation: floatBlockUp 5s ease-in-out 0s infinite,
             blockBreath 5s ease-in-out 0s infinite;
}
.hero__deco g rect:nth-child(2) {
  animation: floatBlockDown 5.5s ease-in-out -0.6s infinite,
             blockBreath 5.5s ease-in-out -0.6s infinite;
}
.hero__deco g rect:nth-child(3) {
  animation: floatBlockUp 6s ease-in-out -1.2s infinite,
             blockBreath 6s ease-in-out -1.2s infinite;
}
.hero__deco g rect:nth-child(4) {
  animation: floatBlockDown 4.5s ease-in-out -1.8s infinite,
             blockBreath 4.5s ease-in-out -1.8s infinite;
}
@keyframes floatBlockUp {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes floatBlockDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}
@keyframes blockBreath {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 1; }
}

/* ベージュ塗りブロックとセージ塗りブロック：揺れ + 濃淡 */
.hero__deco > rect[fill="#c8b8a0"] {
  transform-box: fill-box;
  transform-origin: center;
  animation: floatBlockUp 6s ease-in-out -1s infinite,
             fillPulse 6s ease-in-out -1s infinite;
}
.hero__deco > rect[fill="#7b8a6f"] {
  transform-box: fill-box;
  transform-origin: center;
  animation: floatBlockDown 7s ease-in-out -2s infinite,
             fillPulse 7s ease-in-out -2s infinite;
}
@keyframes fillPulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.7; }
}

/* 2つのアクセント円：パルス（点滅） */
.hero__deco > circle:nth-of-type(1) {
  animation: dotPulse 2.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.hero__deco > circle:nth-of-type(2) {
  animation: dotPulse 2.8s ease-in-out -1s infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.4); }
}

/* 下の点線：流れる（marching ants） */
.hero__deco > line {
  stroke-dasharray: 6 6;
  animation: lineMarch 12s linear infinite;
}
@keyframes lineMarch {
  to { stroke-dashoffset: -240; }
}

/* prefers-reduced-motion 対応（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .hero__deco,
  .hero__deco *,
  .hero__deco g rect,
  .hero__deco > rect,
  .hero__deco > circle,
  .hero__deco > line {
    animation: none !important;
  }
}
